Index: LayoutTests/plugins/npruntime/remove-property.html |
diff --git a/LayoutTests/plugins/npruntime/remove-property.html b/LayoutTests/plugins/npruntime/remove-property.html |
deleted file mode 100644 |
index c04c966ca7d90c88c47e15be3545c94e0fdb9e34..0000000000000000000000000000000000000000 |
--- a/LayoutTests/plugins/npruntime/remove-property.html |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
- |
-<script src="../../resources/js-test.js"></script> |
-</head> |
-<script> |
-function runTest() { |
- plugin = document.getElementById('plugin'); |
- |
- obj = { property : 'value' } |
- shouldBe("'property' in obj", "true"); |
- plugin.testRemoveProperty(obj, 'property'); |
- shouldBe("'property' in obj", "false"); |
- |
- array = [ 1, 2, 3, 4, 5]; |
- shouldBe("array[1]", "2") |
- plugin.testRemoveProperty(array, 1); |
- shouldBe("array[1]", "undefined") |
-} |
-</script> |
-<body onLoad="runTest()"> |
-<embed id="plugin" type="application/x-webkit-test-netscape" test="npruntime-remove-property"></embed> |
-<p id="description"></p> |
-<div id="console"></div> |
- |
-<script> |
-description("Test NPN_RemoveProperty"); |
- |
-</script> |