| Index: chrome/test/data/prerender/plugin_delay_load.html
|
| diff --git a/chrome/test/data/prerender/plugin_delay_load.html b/chrome/test/data/prerender/plugin_delay_load.html
|
| deleted file mode 100644
|
| index 4a84c735906d71560995bfb2d3997bc5718ffc22..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/prerender/plugin_delay_load.html
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -<html>
|
| -<!--
|
| -This test checks to make sure plugins aren't loaded when a page is prerendered,
|
| -but are loaded once the page is displayed.
|
| -
|
| -This test relies on the Pepper plugin (but not the placeholder) implementing
|
| -the postMessage() function on the plugin object.
|
| --->
|
| -<head>
|
| -<title>Prerender Plugin Delay Loading</title>
|
| -
|
| -<script>
|
| -// Make sure plugin was not loaded while prerendering.
|
| -function DidPrerenderPass() {
|
| - // |plugin| should be the blocked plugin placeholder, rather than the
|
| - // test plugin.
|
| - var plugin = window.document['plugin'];
|
| - return plugin.postMessage == undefined;
|
| -}
|
| -
|
| -// Make sure plugin loads once the page is displayed.
|
| -function DidDisplayPass() {
|
| - var plugin = window.document['plugin'];
|
| - return plugin.postMessage != undefined;
|
| -}
|
| -</script>
|
| -
|
| -</head>
|
| -<body>
|
| -<embed name="plugin" type="application/x-ppapi-tests"></embed>
|
| -</body>
|
| -</html>
|
|
|