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

Unified Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-004.html

Issue 2762043004: [css-align] Import the CSS Box Alignment tests from the CSSWG Test Suite (Closed)
Patch Set: Upload suggested changes. Created 3 years, 9 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-align-3/content-distribution/place-content-shorthand-004.html
diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-004.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-004.html
new file mode 100644
index 0000000000000000000000000000000000000000..8a1db87c538d4546f640ae294682a2e27a19720a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/content-distribution/place-content-shorthand-004.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<title>CSS Box Alignment: place-content shorthand - invalid values</title>
+<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
+<link rel="help" href="http://www.w3.org/TR/css3-align/#propdef-place-content" />
+<meta name="assert" content="Check that place-content's invalid values are properly detected at parsing time." />
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="../resources/alignment-parsing-utils.js"></script>
+<div id="log"></div>
+<script>
+ function checkInvalidValues(value)
+ {
+ checkPlaceShorthandInvalidValues("place-content", "align-content", "justify-content", value);
+ }
+
+ test(function() {
+ checkInvalidValues("center safe")
+ checkInvalidValues("true center")
+ }, "Verify overflow keywords are invalid");
+
+ test(function() {
+ checkInvalidValues("center space-between start")
+ }, "Verify fallback values are invalid");
+
+ test(function() {
+ checkInvalidValues("10px left")
+ checkInvalidValues("right 10%")
+ }, "Verify numeric values are invalid");
+
+ test(function() {
+ checkInvalidValues("auto")
+ checkInvalidValues("auto right")
+ checkInvalidValues("auto auto")
+ checkInvalidValues("left auto")
+ }, "Verify 'auto' values are invalid");
+
+ test(function() {
+ checkInvalidValues("")
+ }, "Verify empty declaration is invalid");
+</script>

Powered by Google App Engine
This is Rietveld 408576698