OLD | NEW |
---|---|
1 <html> | 1 <html> |
tommycli
2015/04/28 18:43:16
These are just 'renames' to make the naming of the
| |
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> |
11 | 11 |
(...skipping 11 matching lines...) Expand all Loading... | |
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> |
OLD | NEW |