Title: [169267] branches/safari-537.77-branch/LayoutTests
Revision
169267
Author
dburk...@apple.com
Date
2014-05-23 11:29:34 -0700 (Fri, 23 May 2014)

Log Message

Merged r160896. <rdar://problem/16975471>

Modified Paths

Diff

Modified: branches/safari-537.77-branch/LayoutTests/ChangeLog (169266 => 169267)


--- branches/safari-537.77-branch/LayoutTests/ChangeLog	2014-05-23 18:22:06 UTC (rev 169266)
+++ branches/safari-537.77-branch/LayoutTests/ChangeLog	2014-05-23 18:29:34 UTC (rev 169267)
@@ -1,5 +1,21 @@
 2014-05-23  Dana Burkart  <dburk...@apple.com>
 
+        Merge r160896
+
+    2013-12-19  Ryosuke Niwa  <rn...@webkit.org>
+
+            REGRESSION(r160847): fast/events/overflowchanged-inside-selection-collapse-crash.html fails
+            https://bugs.webkit.org/show_bug.cgi?id=126037
+
+            Reviewed by Anders Carlsson.
+
+            Since overflowchanged event is now asynchronous, make the call to testRunner.notifyDone() also asynchronous.
+
+            * TestExpectations:
+            * fast/dynamic/paused-event-dispatch.html:
+
+2014-05-23  Dana Burkart  <dburk...@apple.com>
+
         Merge r160847
 
     2013-12-19  Ryosuke Niwa  <rn...@webkit.org>

Modified: branches/safari-537.77-branch/LayoutTests/fast/dynamic/paused-event-dispatch.html (169266 => 169267)


--- branches/safari-537.77-branch/LayoutTests/fast/dynamic/paused-event-dispatch.html	2014-05-23 18:22:06 UTC (rev 169266)
+++ branches/safari-537.77-branch/LayoutTests/fast/dynamic/paused-event-dispatch.html	2014-05-23 18:29:34 UTC (rev 169267)
@@ -28,8 +28,10 @@
     function finish()
     {
         document.getElementById("tallBox").style.height = "50px";
-        if (window.testRunner)
-            testRunner.notifyDone();
+        setTimeout(function () {
+            if (window.testRunner)
+                testRunner.notifyDone();
+        }, 0);
     }
 </script>
 <p>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to