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

Unified Diff: LayoutTests/css3/supports-dom-api.html

Issue 1085873002: Only accept inherit/initial/unset in single value declarations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add subtests Created 5 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/css3/supports-dom-api-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/supports-dom-api.html
diff --git a/LayoutTests/css3/supports-dom-api.html b/LayoutTests/css3/supports-dom-api.html
index b34c134df3a1226260024b451a5b3dc71e7c613b..07cc62fe36824e8999840f26eeda978d5aa8b9a0 100644
--- a/LayoutTests/css3/supports-dom-api.html
+++ b/LayoutTests/css3/supports-dom-api.html
@@ -83,6 +83,67 @@
shouldBeFalse('CSS.supports("content", [])');
shouldBeFalse('CSS.supports("content", "!important")');
shouldBeFalse('CSS.supports("(display: none)", undefined)');
+
+ // shorthands and CSS wide keywords
+ shouldBeTrue('CSS.supports("border", "1px solid #000")');
+ shouldBeTrue('CSS.supports("border", "inherit")');
+ shouldBeFalse('CSS.supports("border", "1px solid inherit")');
+ shouldBeFalse('CSS.supports("border", "inherit solid #000")');
+ shouldBeTrue('CSS.supports("border-bottom", "thick green")');
+ shouldBeTrue('CSS.supports("border-bottom", "inherit")');
+ shouldBeFalse('CSS.supports("border-bottom", "thick green inherit")');
+ shouldBeFalse('CSS.supports("border-bottom", "inherit thick green")');
+ shouldBeTrue('CSS.supports("border-left", "thick green")');
+ shouldBeTrue('CSS.supports("border-left", "inherit")');
+ shouldBeFalse('CSS.supports("border-left", "thick green inherit")');
+ shouldBeFalse('CSS.supports("border-left", "inherit thick green")');
+ shouldBeTrue('CSS.supports("border-right", "thick green")');
+ shouldBeTrue('CSS.supports("border-right", "inherit")');
+ shouldBeFalse('CSS.supports("border-right", "thick green inherit")');
+ shouldBeFalse('CSS.supports("border-right", "inherit thick green")');
+ shouldBeTrue('CSS.supports("border-top", "thick green")');
+ shouldBeTrue('CSS.supports("border-top", "inherit")');
+ shouldBeFalse('CSS.supports("border-top", "thick green inherit")');
+ shouldBeFalse('CSS.supports("border-top", "inherit thick green")');
+ shouldBeTrue('CSS.supports("border-radius", "1px 0 3px 4px")');
+ shouldBeTrue('CSS.supports("border-radius", "inherit")');
+ shouldBeFalse('CSS.supports("border-radius", "1px 0 3px inherit")');
+ shouldBeFalse('CSS.supports("border-radius", "inherit 0 3px 4px")');
+ shouldBeTrue('CSS.supports("border-spacing", "5px 5px")');
+ shouldBeTrue('CSS.supports("border-spacing", "inherit")');
+ shouldBeFalse('CSS.supports("border-spacing", "5px inherit")');
+ shouldBeFalse('CSS.supports("border-spacing", "inherit 5px")');
+ shouldBeTrue('CSS.supports("font", "italic small-caps bolder 16px/3 cursive")');
+ shouldBeTrue('CSS.supports("font", "inherit")');
+ shouldBeFalse('CSS.supports("font", "italic small-caps bolder 16px/3 inherit")');
+ shouldBeFalse('CSS.supports("font", "inherit small-caps bolder 16px/3 cursive")');
+ shouldBeTrue('CSS.supports("list-style", "georgian inside")');
+ shouldBeTrue('CSS.supports("list-style", "inherit")');
+ shouldBeFalse('CSS.supports("list-style", "georgian inherit")');
+ shouldBeFalse('CSS.supports("list-style", "inherit inside")');
+ // border-width, border-color, border-style and padding use same code path as margin
+ shouldBeTrue('CSS.supports("margin", "5px")');
+ shouldBeTrue('CSS.supports("margin", "inherit")');
+ shouldBeFalse('CSS.supports("margin", "inherit 5px")');
+ shouldBeFalse('CSS.supports("margin", "5px inherit")');
+ shouldBeFalse('CSS.supports("margin", "inherit 5px 5px")');
+ shouldBeFalse('CSS.supports("margin", "inherit 5px 5px 5px")');
+ shouldBeTrue('CSS.supports("outline", "1px solid #000")');
+ shouldBeTrue('CSS.supports("outline", "inherit")');
+ shouldBeFalse('CSS.supports("outline", "1px solid inherit")');
+ shouldBeFalse('CSS.supports("outline", "inherit solid #000")');
+ shouldBeTrue('CSS.supports("overflow", "scroll")');
+ shouldBeTrue('CSS.supports("overflow", "inherit")');
+ shouldBeFalse('CSS.supports("overflow", "inherit scroll")');
+ shouldBeFalse('CSS.supports("overflow", "scroll inherit")');
+ shouldBeTrue('CSS.supports("transform", "scaleX(2)")');
+ shouldBeTrue('CSS.supports("transform", "inherit")');
+ shouldBeFalse('CSS.supports("transform", "scaleX(2) inherit")');
+ shouldBeFalse('CSS.supports("transform", "inherit scaleX(2)")');
+ shouldBeTrue('CSS.supports("transition", "margin-left 4s")');
+ shouldBeTrue('CSS.supports("transition", "inherit")');
+ shouldBeFalse('CSS.supports("transition", "margin-left inherit")');
+ shouldBeFalse('CSS.supports("transition", "inherit 4s")');
</script>
</body>
</html>
« no previous file with comments | « no previous file | LayoutTests/css3/supports-dom-api-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698