Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: LayoutTests/media/media-initialTime.html

Issue 35033002: Remove HTMLMediaElement.initialTime (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>initialTime attribute test</title>
4 <script src=media-file.js></script>
5 <script src=video-test.js></script>
6
7 <script>
8 function loadeddata()
9 {
10 testExpected("video.initialTime", 0);
11 run("video.initialTime = 10");
12 testExpected("video.initialTime", 0);
13 endTest();
14 }
15
16 function start()
17 {
18 findMediaElement();
19 waitForEvent('loadeddata', loadeddata);
20
21 video.src = findMediaFile("video", "content/test");
22 }
23
24 </script>
25 </head>
26
27 <body onload="start()">
28 <video controls> </video>
29 <p>Test the, so far unused, 'initialTime' attribute.</p>
30
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/media/media-fragments/media-fragments.js ('k') | LayoutTests/media/media-initialTime-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698