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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects.html

Issue 1748563002: Remove http/tests/plugins/create-v8-script-objects.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects.html b/third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects.html
deleted file mode 100644
index 1599bb9a1f6dd181a748633a2a40804178f901db..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-function onSubframeLoaded() {
- document.getElementById('pluginContainer').innerHTML =
- '<embed name="plugin" type="application/x-webkit-test-netscape"></embed>';
- document.plugin.testEvaluate('outputResult()');
-
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-function outputResult() {
- document.getElementById('result').innerHTML = 'SUCCESS';
-}
-</script>
-</head>
-<body>
-<div>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=74515">bug 74515</a>: npCreateV8ScriptObject() should not return an existing V8NPObject if the rootObject doesn't match.</div>
-<div>The subframe causes an entry corresponding to window.top to be added to staticV8NPObjectMap with the subframe as rootObject. When the plugin in the main frame executes script "outputResult()", the existing entry in staticV8NPObjectMap should not be used. Otherwise the wrong outputResult(), which is in the subframe, will be called.
-</div>
-<iframe name="childFrame" src="resources/create-v8-script-objects-iframe.html"></iframe>
-<div id="pluginContainer"></div>
-<div id="result">Running...</div>
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/plugins/create-v8-script-objects-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698