Index: LayoutTests/plugins/resources/resize-from-plugin-frame.html |
diff --git a/LayoutTests/plugins/resources/resize-from-plugin-frame.html b/LayoutTests/plugins/resources/resize-from-plugin-frame.html |
deleted file mode 100644 |
index a9bafc7cd75d335dab12cfd8987cd9477a6d99f7..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/resources/resize-from-plugin-frame.html |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-<html> |
-<body> |
-<embed name="plg" type="application/x-webkit-test-netscape" width="100px" height="100px"> |
-<p>Test for NPP_SetWindow calls sent while a plugin resizes itself.</p> |
-<pre id=result></pre> |
-<script> |
-if (window.testRunner) { |
- testRunner.dumpAsText(); |
- testRunner.dumpChildFramesAsText(); |
-} |
- |
-function resizePlugin(width, height) |
-{ |
- plg.style.width = width + "px"; |
- plg.style.height = height + "px"; |
-} |
- |
-function test() |
-{ |
- try { |
- plg.resizeTo(200, 200); |
- document.getElementById("result").innerHTML = plg.lastSetWindowArguments |
- + "\nHeight and width should equal 200, and the plugin size should not change on scroll."; |
- } catch (ex) { |
- alert("Exception: " + ex.description + ". Test plugin was not found"); |
- } |
-} |
- |
-plg.onclick = test; |
- |
-if (window.eventSender) { |
- eventSender.mouseMoveTo(50, 70); |
- eventSender.mouseDown(); |
- eventSender.mouseUp(); |
-} else |
- document.getElementById("result").innerHTML = "Please click the plugin square above.\n "; |
- |
-</script> |
-<div style="visibility:hidden;height:5000px"></div> |
-</body> |
-</html> |