Chromium Code Reviews

Side by Side Diff: webkit/data/media/bear.html

Issue 3038010: Roll webkit DEPS 63669:63692. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: deps Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « DEPS ('k') | webkit/data/media/manybear.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <video autoplay="true" id="v"></video> 3 <video autoplay="true" id="v"></video>
4 <script> 4 <script>
5 layoutTestController.waitUntilDone(); 5 layoutTestController.waitUntilDone();
6 6
7 var v = document.getElementById('v'); 7 var v = document.getElementById('v');
8 v.addEventListener('load', function() { 8 v.addEventListener('canplaythrough', function() {
9 window.setTimeout("layoutTestController.notifyDone();", 1000); 9 window.setTimeout("layoutTestController.notifyDone();", 1000);
10 }, false); 10 }, false);
11 v.src = 'bear_silent.ogv'; 11 v.src = 'bear_silent.ogv';
12 v.load(); 12 v.load();
13 </script> 13 </script>
14 </body> 14 </body>
15 </html> 15 </html>
OLDNEW
« no previous file with comments | « DEPS ('k') | webkit/data/media/manybear.html » ('j') | no next file with comments »

Powered by Google App Engine