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

Unified Diff: LayoutTests/plugins/reloadplugins-and-pages.html

Issue 18951003: Skip or delete a bunch of timing out tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete a few more tests Created 7 years, 5 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/reloadplugins-and-pages.html
diff --git a/LayoutTests/plugins/reloadplugins-and-pages.html b/LayoutTests/plugins/reloadplugins-and-pages.html
deleted file mode 100644
index fec19b09c1f27da17e835a202168c96d16bb6662..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/reloadplugins-and-pages.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<body>
-<embed id="plg" type="application/x-webkit-test-netscape"></embed>
-<p>Test for NPN_RelaodPlugin in which reloadOpenPages is true. You should see two alerts, indicating that the page was loaded twice.</p>
-<div id='res'>FAILURE</div>
-<script>
- alert("Page was loaded");
- callReload = true;
- if (window.sessionStorage) {
- if (window.sessionStorage.reloadPluginsAndPagesCalled) {
- callReload = false;
- } else {
- window.sessionStorage.reloadPluginsAndPagesCalled = 1;
- }
- }
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- if (callReload) {
- try {
- if (window.testRunner)
- testRunner.waitUntilDone();
- document.getElementById('plg').reloadPluginsAndPages();
- } catch (ex) {
- alert("Exception: " + ex.description + ". Test plugin was not found");
- }
- } else {
- document.getElementById('res').innerHTML="SUCCESS";
- if (window.testRunner)
- testRunner.notifyDone();
- }
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698