OLD | NEW |
1 <html lang="en"> | 1 <html lang="en"> |
2 <head> | 2 <head> |
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
4 <title><video> and <source> error test</title> | 4 <title><video> and <source> error test</title> |
5 <script src=media-file.js></script> | 5 <script src=media-file.js></script> |
6 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 | 6 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 |
7 (Please avoid writing new tests using video-test.js) --> | 7 (Please avoid writing new tests using video-test.js) --> |
8 <script src=video-test.js></script> | 8 <script src=video-test.js></script> |
9 | 9 |
10 <script> | 10 <script> |
11 | 11 |
12 var sources = []; | 12 var sources = []; |
13 | 13 |
14 function loadeddata() | 14 function loadeddata() |
15 { | 15 { |
16 consoleWrite(""); | 16 consoleWrite(""); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 </video> | 69 </video> |
70 | 70 |
71 <p>1. Test that errors fired while evaluating/loading <source> ele
ments are fired at the | 71 <p>1. Test that errors fired while evaluating/loading <source> ele
ments are fired at the |
72 <source> and not at the <video> element. | 72 <source> and not at the <video> element. |
73 <br>2. Verifiy that an 'error' event fired while processing/loading a &l
t;source> element | 73 <br>2. Verifiy that an 'error' event fired while processing/loading a &l
t;source> element |
74 does not set the media element's 'error' attribute.</p> | 74 does not set the media element's 'error' attribute.</p> |
75 | 75 |
76 <script>start()</script> | 76 <script>start()</script> |
77 </body> | 77 </body> |
78 </html> | 78 </html> |
OLD | NEW |