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

Unified Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-rhythm-1/line-height-step-parsing-001.html

Issue 2707203005: Import csswg-test@ed79f8614481e97d61f17f41b65448c211d27c6f (Closed)
Patch Set: Created 3 years, 10 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/external/csswg-test/css-rhythm-1/line-height-step-parsing-001.html
diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-rhythm-1/line-height-step-parsing-001.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-rhythm-1/line-height-step-parsing-001.html
new file mode 100644
index 0000000000000000000000000000000000000000..3febf057f6a3ae4c813c9c9b78fc161f5e9a35d4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-rhythm-1/line-height-step-parsing-001.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<title>CSS Rhythmic Sizing: parsing line-height-step</title>
+<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
+<link rel="help" href="https://drafts.csswg.org/css-rhythm-1/#line-height-step">
+<meta name="assert" content="This test asserts the parsing and getComputedStyle works correctly for the line-height-step property.">
+<meta name="flags" content="dom">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+
+<div title="initial value should be '0px'" data-expected="0px"></div>
+
+<div style="line-height-step: 20px" data-expected="20px">
+ <div title="line-height-step should inherit" data-expected="20px"></div>
+ <div style="line-height-step: initial" data-expected="0px"></div>
+
+ <div style="line-height-step: 40px" data-expected="40px"></div>
+
+ <div title="'0' should be a valid length" style="line-height-step: 0" data-expected="0px"></div>
+
+ <div title="Interger should be invalid" style="line-height-step: 1" data-expected="20px"></div>
+ <div title="Negative length should be invalid" style="line-height-step: -1px" data-expected="20px"></div>
+</div>
+
+<div id="pt" style="line-height-step: 40pt"></div>
+
+<script>
+Array.prototype.forEach.call(document.querySelectorAll("[data-expected]"), function (element) {
+ var expected = element.dataset.expected;
+ test(function () {
+ var actual = getComputedStyle(element).lineHeightStep;
+ assert_equals(actual, expected);
+ }, element.title || "'" + element.getAttribute("style") + "' should compute to '" + expected + "'");
+});
+
+test(function () {
+ assert_equals(getComputedStyle(document.getElementById("pt")).lineHeightStep.slice(-2), "px");
+}, "Computed value should be the absolute length");
+</script>

Powered by Google App Engine
This is Rietveld 408576698