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

Unified Diff: third_party/WebKit/LayoutTests/plugins/release-frame-content-window.html

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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/release-frame-content-window.html
diff --git a/third_party/WebKit/LayoutTests/plugins/release-frame-content-window.html b/third_party/WebKit/LayoutTests/plugins/release-frame-content-window.html
deleted file mode 100644
index d40f51f32262d29a55bfead34d3c51cb65d67f5e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/plugins/release-frame-content-window.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script type="text/javascript">
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-
-function runTest() {
- var p = document.getElementById('plg');
- var iframe = document.getElementById('frame-id');
- p.remember(iframe.contentWindow);
-
- var someObject = {a: 1, b: 2};
- // Load another page in iframe, so plugin keeps reference to old frame's contentWindow.
- iframe.onload = function() {
- // This will trigger Release Object for previously remembered reference.
- p.remember(someObject);
- document.getElementById('result').innerHTML = 'SUCCESS';
- if (window.testRunner)
- testRunner.notifyDone();
- };
- iframe.src = 'resources/empty2.html';
-}
-
-</script>
-<body>
-<embed id="plg" type="application/x-webkit-test-netscape"></embed><P>
-<iframe id="frame-id" src="resources/empty.html" onload='runTest()'></iframe>
-<div>This tests that releasing a reference to a contentWindow that has already been navigated away works correctly and does not crash. If this test is successful, the word SUCCESS should be seen below.</div>
-<div id="result">FAILED</div>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698