Title: [228263] trunk/Source/WebCore
Revision
228263
Author
[email protected]
Date
2018-02-08 00:00:03 -0800 (Thu, 08 Feb 2018)

Log Message

Try to fix ErrorEvent tests seen failing on buildbot after fix for bug 179591.

* bindings/js/JSErrorHandler.cpp:
(WebCore::JSErrorHandler::handleEvent): Add back line of code accidentally removed.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (228262 => 228263)


--- trunk/Source/WebCore/ChangeLog	2018-02-08 07:49:21 UTC (rev 228262)
+++ trunk/Source/WebCore/ChangeLog	2018-02-08 08:00:03 UTC (rev 228263)
@@ -1,3 +1,10 @@
+2018-02-07  Darin Adler  <[email protected]>
+
+        Try to fix ErrorEvent tests seen failing on buildbot after fix for bug 179591.
+
+        * bindings/js/JSErrorHandler.cpp:
+        (WebCore::JSErrorHandler::handleEvent): Add back line of code accidentally removed.
+
 2018-02-05  Carlos Garcia Campos  <[email protected]>
 
         Add a way to check if a host is an IP address

Modified: trunk/Source/WebCore/bindings/js/JSErrorHandler.cpp (228262 => 228263)


--- trunk/Source/WebCore/bindings/js/JSErrorHandler.cpp	2018-02-08 07:49:21 UTC (rev 228262)
+++ trunk/Source/WebCore/bindings/js/JSErrorHandler.cpp	2018-02-08 08:00:03 UTC (rev 228263)
@@ -96,6 +96,7 @@
         args.append(errorEvent.error(*exec, *globalObject));
         ASSERT(!args.hasOverflowed());
 
+        VM& vm = globalObject->vm();
         VMEntryScope entryScope(vm, vm.entryScope ? vm.entryScope->globalObject() : globalObject);
 
         InspectorInstrumentationCookie cookie = JSMainThreadExecState::instrumentFunctionCall(&scriptExecutionContext, callType, callData);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to