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

Unified Diff: LayoutTests/plugins/reentrant-update-widget-positions.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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/reentrant-update-widget-positions.html
diff --git a/LayoutTests/plugins/reentrant-update-widget-positions.html b/LayoutTests/plugins/reentrant-update-widget-positions.html
deleted file mode 100644
index 6e9e5e8e1802d1980e743f3468aa246e066132fb..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/reentrant-update-widget-positions.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
- <style type="text/css" media="screen">
- #plugin {
- position: absolute;
- width: 100px;
- height: 100px;
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
- // This gets called automatically from the test plugin.
- var doingTest = false;
- function setWindowCalled()
- {
- if (!doingTest)
- return;
-
- var victim = document.getElementById('victim');
- victim.parentNode.removeChild(victim);
- document.body.offsetTop;
-
- if (window.testRunner)
- testRunner.notifyDone();
- }
-
- function doTest()
- {
- doingTest = true;
- document.getElementById('plugin').style.top = "120px";
- document.body.offsetTop;
- doingTest = false;
- }
-
- window.addEventListener('load', function() {
- window.setTimeout(doTest, 0);
- }, false);
- </script>
-</head>
-<body>
-
- <p>This test should not crash.</p>
- <embed type="application/x-webkit-test-netscape"
- onSetWindow="setWindowCalled()"
- id="plugin">
- <embed name="victim" type="application/x-webkit-test-netscape" id="victim">
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698