Title: [227080] trunk/LayoutTests
Revision
227080
Author
[email protected]
Date
2018-01-17 13:27:12 -0800 (Wed, 17 Jan 2018)

Log Message

REGRESSION (r226902): fast/events/ios/rotation/layout-viewport-during-rotation.html and fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html are timing out
<rdar://problem/36589755>

The first argument to a load event listener is an event, which meant that passing scriptCompleteCallback
didn't work as expected.

* fast/events/ios/rotation/layout-viewport-during-rotation.html:
* fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (227079 => 227080)


--- trunk/LayoutTests/ChangeLog	2018-01-17 21:06:48 UTC (rev 227079)
+++ trunk/LayoutTests/ChangeLog	2018-01-17 21:27:12 UTC (rev 227080)
@@ -1,3 +1,14 @@
+2018-01-17  Simon Fraser  <[email protected]>
+
+        REGRESSION (r226902): fast/events/ios/rotation/layout-viewport-during-rotation.html and fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html are timing out
+        <rdar://problem/36589755>
+
+        The first argument to a load event listener is an event, which meant that passing scriptCompleteCallback
+        didn't work as expected.
+
+        * fast/events/ios/rotation/layout-viewport-during-rotation.html:
+        * fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html:
+
 2018-01-17  John Wilander  <[email protected]>
 
         Resource Load Statistics: Block cookies for prevalent resources without user interaction

Modified: trunk/LayoutTests/fast/events/ios/rotation/layout-viewport-during-rotation.html (227079 => 227080)


--- trunk/LayoutTests/fast/events/ios/rotation/layout-viewport-during-rotation.html	2018-01-17 21:06:48 UTC (rev 227079)
+++ trunk/LayoutTests/fast/events/ios/rotation/layout-viewport-during-rotation.html	2018-01-17 21:27:12 UTC (rev 227080)
@@ -44,7 +44,7 @@
             logFixedAndViewports();
         }, false);
 
-        window.addEventListener('load', doTest, false);
+        window.addEventListener('load', function() { doTest(); }, false);
     </script>
 </head>
 <body>

Modified: trunk/LayoutTests/fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html (227079 => 227080)


--- trunk/LayoutTests/fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html	2018-01-17 21:06:48 UTC (rev 227079)
+++ trunk/LayoutTests/fast/events/ios/rotation/safe-area-insets-during-safari-type-rotation.html	2018-01-17 21:27:12 UTC (rev 227080)
@@ -42,7 +42,7 @@
             logFixedAndViewports();
         }, false);
 
-        window.addEventListener('load', doTest, false);
+        window.addEventListener('load', function() { doTest(); }, false);
     </script>
 </head>
 <body>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to