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

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

Issue 1114623002: Plugin Power Saver: Make PPS work well with prerendered pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months 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
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 This test checks to make sure plugins aren't loaded when a page is prerendered, 3 This test checks to make sure plugins aren't loaded when a page is prerendered,
4 but are loaded once the page is displayed. 4 but are loaded once the page is displayed.
5 5
6 This test relies on the Pepper plugin (but not the placeholder) implementing 6 This test relies on the Pepper plugin (but not the placeholder) implementing
7 the postMessage() function on the plugin object. 7 the postMessage() function on the plugin object.
8 --> 8 -->
9 <head> 9 <head>
10 <title>Prerender Plugin Delay Loading</title> 10 <title>Prerender Plugin Delay Loading</title>
(...skipping 12 matching lines...) Expand all
23 var plugin = window.document['plugin']; 23 var plugin = window.document['plugin'];
24 return plugin.postMessage != undefined; 24 return plugin.postMessage != undefined;
25 } 25 }
26 </script> 26 </script>
27 27
28 </head> 28 </head>
29 <body> 29 <body>
30 <embed name="plugin" type="application/x-ppapi-tests"></embed> 30 <embed name="plugin" type="application/x-ppapi-tests"></embed>
31 </body> 31 </body>
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698