| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/history/the-location-interface/location_assign.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/history/the-location-interface/location_assign.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/history/the-location-interface/location_assign.html
|
| deleted file mode 100644
|
| index 3618c2473489b174a91727b4e9a6384ff83d7706..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/browsers/history/the-location-interface/location_assign.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<html>
|
| - <head>
|
| - <title>location_assign</title>
|
| - <script src="../../../../../../resources/testharness.js"></script>
|
| - <script src="../../../../../../resources/testharnessreport.js"></script>
|
| - </head>
|
| - <body>
|
| - <div id="log"></div>
|
| - <script>
|
| - test(function () {
|
| - var href = location.href;
|
| - location.assign('#x');
|
| -
|
| - assert_equals((href + "#x"), location.href, "location href");
|
| -
|
| - }, "location assign");
|
| -
|
| - test(function () {
|
| - var href = location.href;
|
| - assert_throws('SYNTAX_ERR', function() { location.assign("http://:"); });
|
| - assert_equals(location.href, href);
|
| - }, "URL that fails to parse");
|
| - </script>
|
| - </body>
|
| -</html>
|
|
|