Changeset 49925 in webkit


Ignore:
Timestamp:
Oct 21, 2009 4:06:47 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-21 Andrew Scherkus <scherkus@chromium.org>

Reviewed by Eric Seidel.

Update more media layout tests to use findMediaFile().

https://bugs.webkit.org/show_bug.cgi?id=30644

  • media/controls-drag-timebar.html: Switch to using findMediaFile().
  • media/video-currentTime-set.html: Remove src attribute and rely on findMediaFile() instead.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r49922 r49925  
     12009-10-21  Andrew Scherkus  <scherkus@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Update more media layout tests to use findMediaFile().
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=30644
     8
     9        * media/controls-drag-timebar.html: Switch to using findMediaFile().
     10        * media/video-currentTime-set.html: Remove src attribute and rely on findMediaFile() instead.
     11
    1122009-10-21  Brian Weinstein  <bweinstein@apple.com>
    213
  • trunk/LayoutTests/media/controls-drag-timebar.html

    r47171 r49925  
    22    <head>
    33        <title>drag timebar test</title>
     4        <script src=media-file.js></script>
    45        <script src=video-test.js></script>
    56        <script>
     
    5455                waitForEvent('seeked', seeked);
    5556                run("video.autoplay = true");
    56                 run("video.src = 'content/test.mp4'");
     57                run("video.src = '" + findMediaFile("video", "content/test") + "'");
    5758            }   
    5859        </script>
  • trunk/LayoutTests/media/video-currentTime-set.html

    r48494 r49925  
    22<body>
    33
    4     <video src=content/test.mp4 controls></video>
     4    <video controls></video>
    55   
    66    <p>Test that setting currentTime changes the time, and that 'ended' event is fired in a reasonable amount of time</p>
Note: See TracChangeset for help on using the changeset viewer.