Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / prerender / prerender_iframe_plugin_delay_load.html
bloba13af56815bdc339ed5dd4c30ea6d01ee5173d46
1 <html>
2 <!--
3 This test checks to make sure that plugins in an iframe are only
4 loaded once a page is displayed.
5 -->
6 <head>
7 <title>Prerender Iframe Plugins</title>
8 </head>
9 <script>
10 // Make sure plugin was not loaded while prerendering.
11 function DidPrerenderPass() {
12 var plugin_iframe = document.getElementById('plugin_iframe');
13 return plugin_iframe.contentWindow.DidPrerenderPass();
16 // Make sure plugin loads once the page is displayed.
17 function DidDisplayPass() {
18 var plugin_iframe = document.getElementById('plugin_iframe');
19 return plugin_iframe.contentWindow.DidDisplayPass();
21 </script>
22 <body>
23 <iframe src="plugin_delay_load.html" id="plugin_iframe"></iframe>
24 </body>
25 </html>