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

Side by Side Diff: LayoutTests/css3/supports-dom-api-expected.txt

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 unified diff | Download patch
« no previous file with comments | « LayoutTests/css3/supports-dom-api.html ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Test window.CSS.supports() 1 Test window.CSS.supports()
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS CSS.supports("(display: none)") is true 6 PASS CSS.supports("(display: none)") is true
7 PASS CSS.supports("(display: deadbeef)") is false 7 PASS CSS.supports("(display: deadbeef)") is false
8 PASS CSS.supports("not (display: deadbeef)") is true 8 PASS CSS.supports("not (display: deadbeef)") is true
9 PASS CSS.supports("not (display: none)") is false 9 PASS CSS.supports("not (display: none)") is false
10 PASS CSS.supports("not (not (display: none))") is true 10 PASS CSS.supports("not (not (display: none))") is true
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 PASS CSS.supports("display", "none ! \nimportant") is false 54 PASS CSS.supports("display", "none ! \nimportant") is false
55 PASS CSS.supports("", "") is false 55 PASS CSS.supports("", "") is false
56 PASS CSS.supports(true, "") is false 56 PASS CSS.supports(true, "") is false
57 PASS CSS.supports([], "none") is false 57 PASS CSS.supports([], "none") is false
58 PASS CSS.supports("display", "") is false 58 PASS CSS.supports("display", "") is false
59 PASS CSS.supports("display:", "none") is false 59 PASS CSS.supports("display:", "none") is false
60 PASS CSS.supports("z-index", 1) is true 60 PASS CSS.supports("z-index", 1) is true
61 PASS CSS.supports("content", []) is false 61 PASS CSS.supports("content", []) is false
62 PASS CSS.supports("content", "!important") is false 62 PASS CSS.supports("content", "!important") is false
63 PASS CSS.supports("(display: none)", undefined) is false 63 PASS CSS.supports("(display: none)", undefined) is false
64 PASS CSS.supports("border", "1px solid #000") is true
65 PASS CSS.supports("border", "inherit") is true
66 PASS CSS.supports("border", "1px solid inherit") is false
67 PASS CSS.supports("border", "inherit solid #000") is false
68 PASS CSS.supports("border-bottom", "thick green") is true
69 PASS CSS.supports("border-bottom", "inherit") is true
70 PASS CSS.supports("border-bottom", "thick green inherit") is false
71 PASS CSS.supports("border-bottom", "inherit thick green") is false
72 PASS CSS.supports("border-left", "thick green") is true
73 PASS CSS.supports("border-left", "inherit") is true
74 PASS CSS.supports("border-left", "thick green inherit") is false
75 PASS CSS.supports("border-left", "inherit thick green") is false
76 PASS CSS.supports("border-right", "thick green") is true
77 PASS CSS.supports("border-right", "inherit") is true
78 PASS CSS.supports("border-right", "thick green inherit") is false
79 PASS CSS.supports("border-right", "inherit thick green") is false
80 PASS CSS.supports("border-top", "thick green") is true
81 PASS CSS.supports("border-top", "inherit") is true
82 PASS CSS.supports("border-top", "thick green inherit") is false
83 PASS CSS.supports("border-top", "inherit thick green") is false
84 PASS CSS.supports("border-radius", "1px 0 3px 4px") is true
85 PASS CSS.supports("border-radius", "inherit") is true
86 PASS CSS.supports("border-radius", "1px 0 3px inherit") is false
87 PASS CSS.supports("border-radius", "inherit 0 3px 4px") is false
88 PASS CSS.supports("border-spacing", "5px 5px") is true
89 PASS CSS.supports("border-spacing", "inherit") is true
90 PASS CSS.supports("border-spacing", "5px inherit") is false
91 PASS CSS.supports("border-spacing", "inherit 5px") is false
92 PASS CSS.supports("font", "italic small-caps bolder 16px/3 cursive") is true
93 PASS CSS.supports("font", "inherit") is true
94 PASS CSS.supports("font", "italic small-caps bolder 16px/3 inherit") is false
95 PASS CSS.supports("font", "inherit small-caps bolder 16px/3 cursive") is false
96 PASS CSS.supports("list-style", "georgian inside") is true
97 PASS CSS.supports("list-style", "inherit") is true
98 PASS CSS.supports("list-style", "georgian inherit") is false
99 PASS CSS.supports("list-style", "inherit inside") is false
100 PASS CSS.supports("margin", "5px") is true
101 PASS CSS.supports("margin", "inherit") is true
102 PASS CSS.supports("margin", "inherit 5px") is false
103 PASS CSS.supports("margin", "5px inherit") is false
104 PASS CSS.supports("margin", "inherit 5px 5px") is false
105 PASS CSS.supports("margin", "inherit 5px 5px 5px") is false
106 PASS CSS.supports("outline", "1px solid #000") is true
107 PASS CSS.supports("outline", "inherit") is true
108 PASS CSS.supports("outline", "1px solid inherit") is false
109 PASS CSS.supports("outline", "inherit solid #000") is false
110 PASS CSS.supports("overflow", "scroll") is true
111 PASS CSS.supports("overflow", "inherit") is true
112 PASS CSS.supports("overflow", "inherit scroll") is false
113 PASS CSS.supports("overflow", "scroll inherit") is false
114 PASS CSS.supports("transform", "scaleX(2)") is true
115 PASS CSS.supports("transform", "inherit") is true
116 PASS CSS.supports("transform", "scaleX(2) inherit") is false
117 PASS CSS.supports("transform", "inherit scaleX(2)") is false
118 PASS CSS.supports("transition", "margin-left 4s") is true
119 PASS CSS.supports("transition", "inherit") is true
120 PASS CSS.supports("transition", "margin-left inherit") is false
121 PASS CSS.supports("transition", "inherit 4s") is false
64 PASS successfullyParsed is true 122 PASS successfullyParsed is true
65 123
66 TEST COMPLETE 124 TEST COMPLETE
67 125
OLDNEW
« no previous file with comments | « LayoutTests/css3/supports-dom-api.html ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698