- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / prerender / prerender_iframe_plugin_delay_load.html
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();
14 }
15
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();
20 }
21 </script>
22 <body>
23 <iframe src="plugin_delay_load.html" id="plugin_iframe"></iframe>
24 </body>
25 </html>