Title: [257160] trunk/Source/WebCore
Revision
257160
Author
[email protected]
Date
2020-02-21 13:39:01 -0800 (Fri, 21 Feb 2020)

Log Message

Remove an unused local variable after r256808
https://bugs.webkit.org/show_bug.cgi?id=208072

Reviewed by Chris Dumez.

Remove scriptsToExecuteSoon.

* dom/ScriptRunner.cpp:
(WebCore::ScriptRunner::timerFired):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (257159 => 257160)


--- trunk/Source/WebCore/ChangeLog	2020-02-21 21:36:17 UTC (rev 257159)
+++ trunk/Source/WebCore/ChangeLog	2020-02-21 21:39:01 UTC (rev 257160)
@@ -1,3 +1,15 @@
+2020-02-21  Wenson Hsieh  <[email protected]>
+
+        Remove an unused local variable after r256808
+        https://bugs.webkit.org/show_bug.cgi?id=208072
+
+        Reviewed by Chris Dumez.
+
+        Remove scriptsToExecuteSoon.
+
+        * dom/ScriptRunner.cpp:
+        (WebCore::ScriptRunner::timerFired):
+
 2020-02-21  Said Abou-Hallawa  <[email protected]>
 
         Create a new ImageBuffer type for drawing on a DisplayList

Modified: trunk/Source/WebCore/dom/ScriptRunner.cpp (257159 => 257160)


--- trunk/Source/WebCore/dom/ScriptRunner.cpp	2020-02-21 21:36:17 UTC (rev 257159)
+++ trunk/Source/WebCore/dom/ScriptRunner.cpp	2020-02-21 21:39:01 UTC (rev 257160)
@@ -113,7 +113,6 @@
     Vector<RefPtr<PendingScript>> scripts;
 
     if (m_document.shouldDeferAsynchronousScriptsUntilParsingFinishes()) {
-        Vector<RefPtr<PendingScript>> scriptsToExecuteSoon;
         // Scripts not added by the parser are executed asynchronously and yet do not have the 'async' attribute set.
         // We only want to delay scripts that were explicitly marked as 'async' by the developer.
         m_scriptsToExecuteSoon.removeAllMatching([&](auto& pendingScript) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to