Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: third_party/WebKit/LayoutTests/fast/images/border.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
-

Powered by Google App Engine
This is Rietveld 408576698