Title: [175979] trunk/LayoutTests
Revision
175979
Author
[email protected]
Date
2014-11-11 14:58:28 -0800 (Tue, 11 Nov 2014)

Log Message

compositing/video/video-border-radius.html frequently times out on 10.8

Add an event listener before setting source, not after. This should not affect
anything, but seems worth a try.

* compositing/video/video-border-radius.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (175978 => 175979)


--- trunk/LayoutTests/ChangeLog	2014-11-11 22:42:23 UTC (rev 175978)
+++ trunk/LayoutTests/ChangeLog	2014-11-11 22:58:28 UTC (rev 175979)
@@ -1,3 +1,12 @@
+2014-11-11  Alexey Proskuryakov  <[email protected]>
+
+        compositing/video/video-border-radius.html frequently times out on 10.8
+
+        Add an event listener before setting source, not after. This should not affect
+        anything, but seems worth a try.
+
+        * compositing/video/video-border-radius.html:
+
 2014-11-11  Daniel Bates  <[email protected]>
 
         [Frame Flattening] ASSERT(transaction->view == &view()) fails in RenderBlock::removeFromUpdateScrollInfoAfterLayoutTransaction()

Modified: trunk/LayoutTests/compositing/video/video-border-radius.html (175978 => 175979)


--- trunk/LayoutTests/compositing/video/video-border-radius.html	2014-11-11 22:42:23 UTC (rev 175978)
+++ trunk/LayoutTests/compositing/video/video-border-radius.html	2014-11-11 22:58:28 UTC (rev 175979)
@@ -51,13 +51,9 @@
 
     function init()
     {
-        setSrcByTagName("video", findMediaFile("video", "../../media/content/counting"));
-
         var totalCount = document.getElementsByTagName('video').length;
         var count = totalCount;
-        window.console.log('loading videos')
         document.addEventListener("canplaythrough", function () {
-            window.console.log('loaded videos ' + count)
             if (!--count) {
                 if (window.testRunner)
                     setTimeout(function() {
@@ -65,6 +61,8 @@
                     }, totalCount * 150);
             }
         }, true);
+
+        setSrcByTagName("video", findMediaFile("video", "../../media/content/counting"));
     }
 </script>
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to