⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 175979 in webkit


Ignore:
Timestamp:
Nov 11, 2014, 2:58:28 PM (12 years ago)
Author:
ap@apple.com
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:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r175965 r175979  
     12014-11-11  Alexey Proskuryakov  <ap@apple.com>
     2
     3        compositing/video/video-border-radius.html frequently times out on 10.8
     4
     5        Add an event listener before setting source, not after. This should not affect
     6        anything, but seems worth a try.
     7
     8        * compositing/video/video-border-radius.html:
     9
    1102014-11-11  Daniel Bates  <dabates@apple.com>
    211
  • trunk/LayoutTests/compositing/video/video-border-radius.html

    r175794 r175979  
    5252    function init()
    5353    {
    54         setSrcByTagName("video", findMediaFile("video", "../../media/content/counting"));
    55 
    5654        var totalCount = document.getElementsByTagName('video').length;
    5755        var count = totalCount;
    58         window.console.log('loading videos')
    5956        document.addEventListener("canplaythrough", function () {
    60             window.console.log('loaded videos ' + count)
    6157            if (!--count) {
    6258                if (window.testRunner)
     
    6662            }
    6763        }, true);
     64
     65        setSrcByTagName("video", findMediaFile("video", "../../media/content/counting"));
    6866    }
    6967</script>
Note: See TracChangeset for help on using the changeset viewer.