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

Unified Diff: LayoutTests/fast/replaced/object-param-spaces.html

Issue 205523003: Remove beforeload events. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more tests Created 6 years, 9 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/fast/replaced/object-param-spaces.html
diff --git a/LayoutTests/fast/replaced/object-param-spaces.html b/LayoutTests/fast/replaced/object-param-spaces.html
deleted file mode 100644
index cc77bbda4e1bedaa527e9a0f34663f2dd85310e0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/replaced/object-param-spaces.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
- <head>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
- document.addEventListener("beforeload", function(event) {
- var console = document.getElementById("console");
-
- if (event.url == "scheme://url-with-leading-and-trailing-space/")
- console.innerHTML = "PASS";
- else
- console.innerHTML = "FAIL";
-
- event.preventDefault();
-
- if (window.testRunner)
- testRunner.notifyDone();
- }, true);
- </script>
- </head>
- <body>
- <object width="0" height="0" type="application/x-webkit-test-netscape">
- <param name="movie" value=" scheme://url-with-leading-and-trailing-space/ ">
- </object>
- <p>This test verifies that a URL specified in a &lt;param&gt; of an &lt;object&gt; is parsed the same as if it was specified as the data attribute of the &lt;object&gt;. Specifically, this verifies that leading/trailing whitespace are stripped.</p>
- <div id="console"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698