зеркало из https://github.com/mozilla/gecko-dev.git
Bug 947778, return early from SetEventHandler when ELM can't find the global jsobject, r=bz
This commit is contained in:
Родитель
14b30df82f
Коммит
1930eaee3d
|
@ -720,6 +720,8 @@ nsEventListenerManager::SetEventHandler(nsIAtom *aName,
|
|||
nsIScriptContext* context = global->GetScriptContext();
|
||||
NS_ENSURE_TRUE(context, NS_ERROR_FAILURE);
|
||||
|
||||
NS_ENSURE_STATE(global->GetGlobalJSObject());
|
||||
|
||||
JSAutoRequest ar(context->GetNativeContext());
|
||||
JS::Rooted<JSObject*> scope(context->GetNativeContext(),
|
||||
global->GetGlobalJSObject());
|
||||
|
|
Загрузка…
Ссылка в новой задаче