Index: third_party/WebKit/LayoutTests/fast/images/border.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/border.html b/third_party/WebKit/LayoutTests/fast/images/border.html |
deleted file mode 100644 |
index 9a8f5c2f68225da1e8ec6029aa8e1f2f64ffc918..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/border.html |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-<!DOCTYPE html> |
-<title>This tests the HTMLImageElement border property.</title> |
-<body> |
-<script src="../../resources/testharness.js"></script> |
-<script src="../../resources/testharnessreport.js"></script> |
-<script type="text/javascript"> |
-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; |
-} |
- |
-test(function() { |
- assert_equals(imageBorderWidth(), 0); |
- assert_equals(imageBorderWidth(null), 0); |
- assert_equals(imageBorderWidth(''), 0); |
- assert_equals(imageBorderWidth(0), 0); |
- assert_equals(imageBorderWidth('x'), 0); |
- assert_equals(imageBorderWidth(undefined, 'border-width: 20px'), 0); |
- |
- assert_equals(imageBorderWidth(null, 'border-width: 20px'), 20); |
- assert_equals(imageBorderWidth('', 'border-width: 20px'), 20); |
- assert_equals(imageBorderWidth('x', 'border-width: 20px'), 20); |
- assert_equals(imageBorderWidth(0, 'border-width: 20px'), 20); |
- |
- assert_equals(imageBorderWidth(10), 10); |
- assert_equals(imageBorderWidth(' 10'), 10); |
- assert_equals(imageBorderWidth('10 '), 10); |
- assert_equals(imageBorderWidth(' 10 '), 10); |
- assert_equals(imageBorderWidth('10q'), 10); |
- assert_equals(imageBorderWidth(' 10q'), 10); |
- assert_equals(imageBorderWidth('10q '), 10); |
- assert_equals(imageBorderWidth(' 10q '), 10); |
-}); |
-</script> |
- |