OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test checks that prerender is cancelled when an video tag is | 3 This test checks that prerender is cancelled when an video tag is |
scherkus (not reviewing)
2011/10/05 20:21:58
update docs?
Shishir
2011/10/20 21:20:39
Done.
| |
4 encountered. | 4 encountered. |
5 --> | 5 --> |
6 <head> | 6 <head> |
7 <title>Prerender cancellation for HTML5 video.</title> | 7 <title>Prerender cancellation for HTML5 video.</title> |
scherkus (not reviewing)
2011/10/05 20:21:58
ditto
Shishir
2011/10/20 21:20:39
Done.
| |
8 | |
9 <script> | |
10 function DidPrerenderPass() { | |
11 return true; | |
12 } | |
13 function DidDisplayPass() { | |
14 return true; | |
15 } | |
16 </script> | |
8 </head> | 17 </head> |
9 <body> | 18 <body> |
10 <video src="nonexistant.mp4" width="320" height="240" controls="controls"> | 19 <video src="nonexistant.mp4" width="320" height="240" controls="controls"> |
scherkus (not reviewing)
2011/10/05 20:21:58
nit:
you don't need to list width/height (in the
Shishir
2011/10/20 21:20:39
Done.
| |
11 </video> | 20 </video> |
12 </body> | 21 </body> |
13 </html> | 22 </html> |
OLD | NEW |