We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b90505 commit cc56561Copy full SHA for cc56561
tests/css/Validation.js
@@ -1569,6 +1569,23 @@ var YUITest = require("yuitest"),
1569
}
1570
}));
1571
1572
+ suite.add(new ValidationTestCase({
1573
+ property: "position",
1574
+
1575
+ valid: [
1576
+ "static",
1577
+ "relative",
1578
+ "absolute",
1579
+ "fixed",
1580
+ "sticky",
1581
+ "-webkit-sticky"
1582
+ ],
1583
1584
+ invalid: {
1585
+ "foo" : "Expected (static | relative | absolute | fixed | sticky | -webkit-sticky) but found 'foo'."
1586
+ }
1587
+ }));
1588
1589
suite.add(new ValidationTestCase({
1590
property: "stroke-dasharray",
1591
0 commit comments