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

Unified Diff: third_party/WebKit/LayoutTests/plugins/override-node-method.html

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad rebase. Created 4 years, 9 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: third_party/WebKit/LayoutTests/plugins/override-node-method.html
diff --git a/third_party/WebKit/LayoutTests/plugins/override-node-method.html b/third_party/WebKit/LayoutTests/plugins/override-node-method.html
deleted file mode 100644
index 8289880a0a240e763c3b6009aa8025fc7ef11efa..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/plugins/override-node-method.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-<body>
-<embed name="plg" type="application/x-webkit-test-netscape"></embed>
-<p>Test that a plugin can override Node methods of its element. This also means that the plugin
-is instantiated when accessing properties and methods of its owner element.</p>
-<p>Should alert PASS.</p>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function pluginCallback() { alert("PASS") }
-
- try {
- plg.normalize();
- } catch (ex) {
- alert("Exception: " + ex.description + ". Test plugin was not found");
- }
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698