Index: LayoutTests/plugins/call-as-function.html |
diff --git a/LayoutTests/plugins/call-as-function.html b/LayoutTests/plugins/call-as-function.html |
deleted file mode 100644 |
index 2987926c2371a827d8468431e602b2dcf893ed22..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/call-as-function.html |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-<html> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-function runTest() { |
- var c = document.getElementById('console'); |
- var p = document.getElementById('plg'); |
- var x = p(); |
- c.innerHTML += 'plg() = ' + x + '<br>'; |
- |
- var y = p.testObject(); |
- c.innerHTML += 'plg.testObject() = ' + y + '<br>'; |
-} |
-</script> |
-<body onload='runTest()'> |
-<embed id="plg" type="application/x-webkit-test-netscape"></embed><P> |
- |
-This tests that call a plugin object (NPObject) as a function invokes |
-invokeDefault() function on the object. |
- |
-<div id="console"></div> |
-</body> |
-</html> |
- |