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 <param> of an <object> is parsed the same as if it was specified as the data attribute of the <object>. Specifically, this verifies that leading/trailing whitespace are stripped.</p> |
- <div id="console"></div> |
- </body> |
-</html> |