Title: [257483] trunk/Source/WebKit
Revision
257483
Author
[email protected]
Date
2020-02-26 11:00:13 -0800 (Wed, 26 Feb 2020)

Log Message

Unreviewed, rolling out r257471.

Causes crashes on the bots

Reverted changeset:

"Unreviewed, fix debug asserts on the bots after r257389."
https://trac.webkit.org/changeset/257471

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (257482 => 257483)


--- trunk/Source/WebKit/ChangeLog	2020-02-26 18:58:28 UTC (rev 257482)
+++ trunk/Source/WebKit/ChangeLog	2020-02-26 19:00:13 UTC (rev 257483)
@@ -1,5 +1,16 @@
 2020-02-26  Chris Dumez  <[email protected]>
 
+        Unreviewed, rolling out r257471.
+
+        Causes crashes on the bots
+
+        Reverted changeset:
+
+        "Unreviewed, fix debug asserts on the bots after r257389."
+        https://trac.webkit.org/changeset/257471
+
+2020-02-26  Chris Dumez  <[email protected]>
+
         Unreviewed, rolling out r257389.
 
         Reverted changeset:

Modified: trunk/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp (257482 => 257483)


--- trunk/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp	2020-02-26 18:58:28 UTC (rev 257482)
+++ trunk/Source/WebKit/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp	2020-02-26 19:00:13 UTC (rev 257483)
@@ -95,9 +95,7 @@
 
 Ref<InjectedBundleNodeHandle> InjectedBundleNodeHandle::create(Node& node)
 {
-    auto handle = adoptRef(*new InjectedBundleNodeHandle(node));
-    handle->suspendIfNeeded();
-    return handle;
+    return adoptRef(*new InjectedBundleNodeHandle(node));
 }
 
 InjectedBundleNodeHandle::InjectedBundleNodeHandle(Node& node)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to