OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test checks that prerender is cancelled when an audio tag is | 3 This test checks that audio tags are deferred during prerendering. |
4 encountered. | |
5 --> | 4 --> |
6 <head> | 5 <head> |
7 <title>Prerender cancellation for HTML5 audio.</title> | 6 <title>Prerender for HTML5 audio.</title> |
8 </head> | 7 </head> |
9 <body> | 8 |
10 <audio controls="controls" autoplay="autoplay"> | 9 <body> |
11 <source src="nonexistant.wav" type="audio/wav" /> | 10 <audio id="mediaEl" controls> |
12 </audio> | 11 <source src="bear.wav" type="audio/wav" /> |
scherkus (not reviewing)
2011/11/08 06:21:06
nit: for this and the rest of the files just inlin
Shishir
2011/11/09 22:27:47
Done.
| |
13 </body> | 12 </audio> |
13 | |
14 <script> | |
15 var willPlay = false; | |
16 </script> | |
17 | |
18 <script src="prerender_html5_common.js"></script> | |
19 | |
20 </body> | |
14 </html> | 21 </html> |
OLD | NEW |