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

Unified Diff: LayoutTests/plugins/destroy-on-setwindow.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 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/plugins/destroy-on-setwindow.html
diff --git a/LayoutTests/plugins/destroy-on-setwindow.html b/LayoutTests/plugins/destroy-on-setwindow.html
deleted file mode 100644
index c8d1efc0b62e2f808ef568e2295b637c08b161f0..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/destroy-on-setwindow.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<p>
- Test that a plugin that causes its Widget to be destroyed during setWindow does not cause a crash.
-</p>
-<embed id="plugin" type="application/x-webkit-test-netscape" onSetWindow="handleSetWindow()">
-<script>
- var plugIn = document.getElementById("plugin");
- var count = 0;
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function handleSetWindow()
- {
- count++;
-
- if (count == 2)
- plugIn.style.width = "500px";
- else if (count == 3)
- plugIn.parentNode.removeChild(plugIn);
- }
-
- handleSetWindow();
-</script>

Powered by Google App Engine
This is Rietveld 408576698