| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/script-tests/parse-src.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/script-tests/parse-src.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/script-tests/parse-src.js
|
| deleted file mode 100644
|
| index 6b5f182f9c84bdecae6f906fc1646ad969a98729..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLImageElement/script-tests/parse-src.js
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -description('Test that when using the JavaScript bindings to get the value of a URL attribute such \
|
| - as \'src\', leading whitespace is ignored');
|
| -
|
| -function testURL(attribute, url)
|
| -{
|
| - img[attribute] = url;
|
| - return img[attribute];
|
| -}
|
| -
|
| -var img = new Image();
|
| -var url = "about:blank";
|
| -
|
| -shouldBe('testURL("src", url)', 'url');
|
| -shouldBe('testURL("src", "\\n" + url)', 'url');
|
| -shouldBe('testURL("src", " " + url)', 'url');
|
| -
|
| -shouldBe('testURL("lowsrc", url)', 'url');
|
| -shouldBe('testURL("lowsrc", "\\n" + url)', 'url');
|
| -shouldBe('testURL("lowsrc", " " + url)', 'url');
|
| -
|
| -shouldBe('testURL("longDesc", url)', 'url');
|
| -shouldBe('testURL("longDesc", "\\n" + url)', 'url');
|
| -shouldBe('testURL("longDesc", " " + url)', 'url');
|
|
|