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

Unified Diff: LayoutTests/platform/chromium/plugins/empty-per-context-data.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/platform/chromium/plugins/empty-per-context-data.html
diff --git a/LayoutTests/platform/chromium/plugins/empty-per-context-data.html b/LayoutTests/platform/chromium/plugins/empty-per-context-data.html
deleted file mode 100644
index 2ff25b4a13951f4db4b54992d88d9fe835c89452..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/plugins/empty-per-context-data.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script type="text/javascript">
-if (window.testRunner) {
- testRunner.dumpAsText();
- // So that we can catch crash failure.
- testRunner.waitUntilDone();
-}
-
-function runTest() {
- var p = document.getElementById('plg');
- var iframe = document.getElementById('script-container-frame-id');
- frameScriptFunction = iframe.contentWindow['new-script-object-in-frame'];
- iframe.parentNode.removeChild(iframe);
- p.testScriptObjectInvoke('frameScriptFunction', 'createObject');
- document.getElementById('result').innerHTML = 'SUCCESS';
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-</script>
-<body>
-<embed id="plg" type="application/x-webkit-test-netscape"></embed><P>
-<iframe id="script-container-frame-id" src="resources/script-container.html" onload='runTest()'></iframe>
-<div>This tests that invoking a plugin object from a (iframe) document that is no longer visible in a frame doesn't crash the renderer. 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