Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: chrome/test/data/prerender/prerender_html5_video.html

Issue 8095007: Defer loading of audio/video tags while prerendering. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixing test for release build. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 This test checks that prerender is cancelled when an video tag is 3 This test checks that video tags are deferred during prerendering.
4 encountered.
5 --> 4 -->
6 <head> 5 <head>
7 <title>Prerender cancellation for HTML5 video.</title> 6 <title>Prerender for HTML5 video.</title>
8 </head> 7 </head>
9 <body> 8
10 <video src="nonexistant.mp4" width="320" height="240" controls="controls"> 9 <body>
11 </video> 10 <video id="mediaEl" src="bear.ogv" controls>
12 </body> 11 </video>
12
13 <script>
14 var willPlay = false;
15 var testNetworkEvents = false;
16 </script>
17
18 <script src="prerender_html5_common.js"></script>
19
20 </body>
13 </html> 21 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/prerender/prerender_html5_common.js ('k') | chrome/test/data/prerender/prerender_html5_video_network.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698