Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Unified Diff: LayoutTests/plugins/npruntime/remove-property.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698