Chromium Code Reviews| Index: chrome/test/data/prerender/prerender_html5_video.html |
| diff --git a/chrome/test/data/prerender/prerender_html5_video.html b/chrome/test/data/prerender/prerender_html5_video.html |
| index d945d19ad9d9bd7538c05daa5da66e0d9178b173..453bbc4acdb1825386a1a8e80ae34bca2b5a15be 100644 |
| --- a/chrome/test/data/prerender/prerender_html5_video.html |
| +++ b/chrome/test/data/prerender/prerender_html5_video.html |
| @@ -1,13 +1,20 @@ |
| <html> |
| <!-- |
| - This test checks that prerender is cancelled when an video tag is |
| - encountered. |
| + This test checks that video tags are deferred during prerendering. |
| --> |
| - <head> |
| - <title>Prerender cancellation for HTML5 video.</title> |
| - </head> |
| - <body> |
| - <video src="nonexistant.mp4" width="320" height="240" controls="controls"> |
| - </video> |
| - </body> |
| +<head> |
| +<title>Prerender for HTML5 video.</title> |
| +</head> |
| + |
| +<body> |
| +<video id="mediaEl" src="bear.ogv" controls> |
|
dominich
2011/11/14 19:40:35
has this .ogv been committed already?
Shishir
2011/11/14 19:51:53
Yes. CL: 8505038
|
| +</video> |
| + |
| +<script> |
| + var willPlay = false; |
| +</script> |
| + |
| +<script src="prerender_html5_common.js"></script> |
| + |
| +</body> |
| </html> |