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

Unified Diff: third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.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/plugin-remove-subframe.html
diff --git a/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html b/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html
deleted file mode 100644
index ddd1b07077ba7d6d8846b12c62ea969bec6f1027..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/plugins/plugin-remove-subframe.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<head>
-<script>
-function MyCallback() {
-
-}
-
-function test() {
- try {
-
- var plugin = window.frames["subframe"].document.plugins[0];
- plugin.getURL('javascript:parent.document.getElementById("d").innerHTML = "";', '_self');
-
- } catch (ex) {
- alert(ex);
- }
-
- setTimeout(done, 10);
-}
-
-function done() {
- testRunner.dumpAsText();
- testRunner.notifyDone();
-}
-</script>
-</head>
-<body onload="testRunner.waitUntilDone(); setTimeout(test, 10)">
-<p>Test for <a href="http://bugs.webkit.org/show_bug.cgi?id=14437">bug 14437</a>:
-RTÉ video crashes Safari.</p>
-<p>Only works with DumpRenderTree.</p>
-
-<div id='d'>
- <iframe name='subframe' src='resources/plugin-remove-subframe-iframe.html'></iframe>
-</div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698