Title: [263533] trunk/LayoutTests
Revision
263533
Author
[email protected]
Date
2020-06-25 15:12:15 -0700 (Thu, 25 Jun 2020)

Log Message

REGRESSION(r260800): Null Ptr Deref READ @ WTF::Optional<WTF::Seconds>::clear
https://bugs.webkit.org/show_bug.cgi?id=213543

Patch by Said Abou-Hallawa <[email protected]> on 2020-06-25
Reviewed by Darin Adler.

Make the test asynchronous since it involves a rAF callback.

* fast/rendering/iframe-window-animation-modifies-iframe-srcdoc-crash.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (263532 => 263533)


--- trunk/LayoutTests/ChangeLog	2020-06-25 22:11:42 UTC (rev 263532)
+++ trunk/LayoutTests/ChangeLog	2020-06-25 22:12:15 UTC (rev 263533)
@@ -1,3 +1,14 @@
+2020-06-25  Said Abou-Hallawa  <[email protected]>
+
+        REGRESSION(r260800): Null Ptr Deref READ @ WTF::Optional<WTF::Seconds>::clear
+        https://bugs.webkit.org/show_bug.cgi?id=213543
+
+        Reviewed by Darin Adler.
+
+        Make the test asynchronous since it involves a rAF callback.
+
+        * fast/rendering/iframe-window-animation-modifies-iframe-srcdoc-crash.html:
+
 2020-06-25  Karl Rackler  <[email protected]>
 
         Remove expectation for fast/writing-mode/english-bt-text-with-spelling-marker.html and fast/writing-mode/english-rl-text-with-spelling-marker.html as they are passing. 

Modified: trunk/LayoutTests/fast/rendering/iframe-window-animation-modifies-iframe-srcdoc-crash.html (263532 => 263533)


--- trunk/LayoutTests/fast/rendering/iframe-window-animation-modifies-iframe-srcdoc-crash.html	2020-06-25 22:11:42 UTC (rev 263532)
+++ trunk/LayoutTests/fast/rendering/iframe-window-animation-modifies-iframe-srcdoc-crash.html	2020-06-25 22:12:15 UTC (rev 263533)
@@ -2,11 +2,15 @@
 <html>
 
 <script>
-if (window.testRunner)
+if (window.testRunner) {
+    testRunner.waitUntilDone();
     testRunner.dumpAsText();
+}
 
 function srcDocModify() {
     iframe.srcdoc = "";
+    if (window.testRunner)
+        testRunner.notifyDone();
 }
 function runTest() {
     document = iframe.contentDocument;
@@ -18,7 +22,7 @@
 <body>
 <p>This test passes if there is no crash.</p>
 <iframe id="iframe" src=""
-<video  _onloadstart_="runTest()">
+<video _onloadstart_="runTest()">
 <source>
 </body>
 </html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to