| Index: third_party/WebKit/LayoutTests/fast/images/script-tests/border.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/images/script-tests/border.js b/third_party/WebKit/LayoutTests/fast/images/script-tests/border.js
|
| deleted file mode 100644
|
| index e3017b2b8f5f2ea4ecfdfd485e1ef3a35a42f26f..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/images/script-tests/border.js
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -description(
|
| -"This tests the HTMLImageElement border property."
|
| -);
|
| -
|
| -function imageBorderWidth(borderValue, style)
|
| -{
|
| - var image = document.createElement("img");
|
| - if (borderValue !== undefined)
|
| - image.setAttribute("border", borderValue);
|
| - image.setAttribute("style", style);
|
| - image.setAttribute("width", "0");
|
| - document.body.appendChild(image);
|
| - var borderBoxWidth = image.offsetWidth;
|
| - document.body.removeChild(image);
|
| - return borderBoxWidth / 2;
|
| -}
|
| -
|
| -shouldBe("imageBorderWidth()", "0");
|
| -shouldBe("imageBorderWidth(null)", "0");
|
| -shouldBe("imageBorderWidth('')", "0");
|
| -shouldBe("imageBorderWidth(0)", "0");
|
| -shouldBe("imageBorderWidth('x')", "0");
|
| -shouldBe("imageBorderWidth(undefined, 'border-width: 20px')", "0");
|
| -
|
| -shouldBe("imageBorderWidth(null, 'border-width: 20px')", "20");
|
| -shouldBe("imageBorderWidth('', 'border-width: 20px')", "20");
|
| -shouldBe("imageBorderWidth('x', 'border-width: 20px')", "20");
|
| -shouldBe("imageBorderWidth(0, 'border-width: 20px')", "20");
|
| -
|
| -shouldBe("imageBorderWidth(10)", "10");
|
| -shouldBe("imageBorderWidth(' 10')", "10");
|
| -shouldBe("imageBorderWidth('10 ')", "10");
|
| -shouldBe("imageBorderWidth(' 10 ')", "10");
|
| -shouldBe("imageBorderWidth('10q')", "10");
|
| -shouldBe("imageBorderWidth(' 10q')", "10");
|
| -shouldBe("imageBorderWidth('10q ')", "10");
|
| -shouldBe("imageBorderWidth(' 10q ')", "10");
|
|
|