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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLFontElement/script-tests/size-attribute.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 months 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/dom/HTMLFontElement/script-tests/size-attribute.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLFontElement/script-tests/size-attribute.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLFontElement/script-tests/size-attribute.js
deleted file mode 100644
index 076b80cb7aab40b48e356cb02b456b6b0344dcc9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLFontElement/script-tests/size-attribute.js
+++ /dev/null
@@ -1,91 +0,0 @@
-description("HTMLFontElement size attribute test");
-
-function fontSizeAttributeEffect(value)
-{
- var element = document.createElement("font");
- element.setAttribute("size", value);
- var outerElement = document.createElement("p");
- outerElement.setAttribute("style", "font-size: 100px");
- document.body.appendChild(outerElement);
- outerElement.appendChild(element);
- var computedStyle = getComputedStyle(element, "");
- var result = computedStyle.fontSize;
- document.body.removeChild(outerElement);
- return result === "100px" ? null : result;
-}
-
-shouldBe('fontSizeAttributeEffect("")', 'null');
-
-shouldBe('fontSizeAttributeEffect("1")', '"10px"');
-shouldBe('fontSizeAttributeEffect("2")', '"13px"');
-shouldBe('fontSizeAttributeEffect("3")', '"16px"');
-shouldBe('fontSizeAttributeEffect("4")', '"18px"');
-shouldBe('fontSizeAttributeEffect("5")', '"24px"');
-shouldBe('fontSizeAttributeEffect("6")', '"32px"');
-shouldBe('fontSizeAttributeEffect("7")', '"48px"');
-
-shouldBe('fontSizeAttributeEffect("0")', '"10px"');
-
-shouldBe('fontSizeAttributeEffect("-1")', '"13px"');
-shouldBe('fontSizeAttributeEffect("-2")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-3")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-4")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-5")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-6")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-7")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-8")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-9")', '"10px"');
-shouldBe('fontSizeAttributeEffect("-10")', '"10px"');
-
-shouldBe('fontSizeAttributeEffect("x6")', 'null');
-shouldBe('fontSizeAttributeEffect(" 6")', '"32px"');
-shouldBe('fontSizeAttributeEffect("\\t6")', '"32px"');
-shouldBe('fontSizeAttributeEffect("\\r6")', '"32px"');
-shouldBe('fontSizeAttributeEffect("\\n6")', '"32px"');
-shouldBe('fontSizeAttributeEffect("\\u20086")', 'null');
-
-shouldBe('fontSizeAttributeEffect("x-6")', 'null');
-shouldBe('fontSizeAttributeEffect(" -6")', '"10px"');
-shouldBe('fontSizeAttributeEffect("\\t-6")', '"10px"');
-shouldBe('fontSizeAttributeEffect("\\r-6")', '"10px"');
-shouldBe('fontSizeAttributeEffect("\\n-6")', '"10px"');
-shouldBe('fontSizeAttributeEffect("\\u2008-6")', 'null');
-
-shouldBe('fontSizeAttributeEffect("x+6")', 'null');
-shouldBe('fontSizeAttributeEffect(" +6")', '"48px"');
-shouldBe('fontSizeAttributeEffect("\\t+6")', '"48px"');
-shouldBe('fontSizeAttributeEffect("\\r+6")', '"48px"');
-shouldBe('fontSizeAttributeEffect("\\n+6")', '"48px"');
-shouldBe('fontSizeAttributeEffect("\\u2008+6")', 'null');
-
-shouldBe('fontSizeAttributeEffect("x+x6")', 'null');
-shouldBe('fontSizeAttributeEffect(" + 6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\t+\\t6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\r+\\r6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\n+\\n6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\u2008+\\u20086")', 'null');
-
-shouldBe('fontSizeAttributeEffect("x-x6")', 'null');
-shouldBe('fontSizeAttributeEffect(" - 6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\t-\\t6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\r-\\r6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\n-\\n6")', 'null');
-shouldBe('fontSizeAttributeEffect("\\u2008-\\u20086")', 'null');
-
-shouldBe('fontSizeAttributeEffect("8")', '"48px"');
-shouldBe('fontSizeAttributeEffect("9")', '"48px"');
-shouldBe('fontSizeAttributeEffect("10")', '"48px"');
-shouldBe('fontSizeAttributeEffect("100")', '"48px"');
-shouldBe('fontSizeAttributeEffect("1000")', '"48px"');
-
-shouldBe('fontSizeAttributeEffect("1x")', '"10px"');
-shouldBe('fontSizeAttributeEffect("1.")', '"10px"');
-shouldBe('fontSizeAttributeEffect("1.9")', '"10px"');
-shouldBe('fontSizeAttributeEffect("2x")', '"13px"');
-shouldBe('fontSizeAttributeEffect("2.")', '"13px"');
-shouldBe('fontSizeAttributeEffect("2.9")', '"13px"');
-
-shouldBe('fontSizeAttributeEffect("a")', 'null');
-
-var arabicIndicDigitOne = String.fromCharCode(0x661);
-shouldBe('fontSizeAttributeEffect(arabicIndicDigitOne)', 'null');

Powered by Google App Engine
This is Rietveld 408576698