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 prerender is cancelled when an audio tag is |
scherkus (not reviewing)
2011/10/05 20:21:58
does this need to be updated?
Shishir
2011/10/20 21:20:39
Done.
| |
4 encountered. | 4 encountered. |
5 --> | 5 --> |
6 <head> | 6 <head> |
7 <title>Prerender cancellation for HTML5 audio.</title> | 7 <title>Prerender cancellation for HTML5 audio.</title> |
scherkus (not reviewing)
2011/10/05 20:21:58
updated?
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 <audio controls="controls" autoplay="autoplay"> | 19 <audio controls="controls" autoplay="autoplay"> |
scherkus (not reviewing)
2011/10/05 20:21:58
nit: correct syntax is to just list the attributes
Shishir
2011/10/20 21:20:39
Done.
| |
11 <source src="nonexistant.wav" type="audio/wav" /> | 20 <source src="nonexistant.wav" type="audio/wav" /> |
12 </audio> | 21 </audio> |
13 </body> | 22 </body> |
14 </html> | 23 </html> |
OLD | NEW |