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

Unified Diff: LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html

Issue 179383003: [CSS Grid Layout] Disallow using <ident> and function names as <custom-ident> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html
diff --git a/LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html b/LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html
index 7e23dfaf919f4ad5949eb55dec51b0b885de549e..f088548570929d5e5ff8f84126faed4a725ea8f1 100644
--- a/LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html
+++ b/LayoutTests/fast/css-grid-layout/non-grid-element-repeat-get-set.html
@@ -91,6 +91,12 @@
testInvalidSyntax("repeat(3 , ,)");
testInvalidSyntax("repeat(0, 15px)");
testInvalidSyntax("repeat(-1, auto)");
+ testInvalidSyntax("repeat(1, (auto) 10px)");
+ testInvalidSyntax("repeat(1, (start auto) 10px)");
+ testInvalidSyntax("repeat(1, 10px (minmax))");
+ testInvalidSyntax("repeat(1, 10px (minmax end))");
+ testInvalidSyntax("repeat(1, 2em (subgrid) 10px)");
+ testInvalidSyntax("repeat(1, 2em (middle subgrid) 10px)");
// Nesting is no allowed.
testInvalidSyntax("repeat(2, repeat(1, auto))");
</script>

Powered by Google App Engine
This is Rietveld 408576698