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

Side by Side Diff: LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt

Issue 244693003: [CSS Shapes] Add parsing support for gradients (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Increase threshold Created 6 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 | « no previous file | LayoutTests/fast/shapes/parsing/parsing-test-utils.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Testing parsing of the shape-outside property. 1 Testing parsing of the shape-outside property.
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 getCSSText("shape-outside", "none") is "none" 6 PASS getCSSText("shape-outside", "none") is "none"
7 PASS getComputedStyleValue("shape-outside", "none") is "none" 7 PASS getComputedStyleValue("shape-outside", "none") is "none"
8 PASS getCSSText("shape-outside", "inset(10px)") is "inset(10px)" 8 PASS getCSSText("shape-outside", "inset(10px)") is "inset(10px)"
9 PASS getComputedStyleValue("shape-outside", "inset(10px)") is "inset(10px)" 9 PASS getComputedStyleValue("shape-outside", "inset(10px)") is "inset(10px)"
10 PASS getCSSText("shape-outside", "inset(10px 9px)") is "inset(10px 9px)" 10 PASS getCSSText("shape-outside", "inset(10px 9px)") is "inset(10px 9px)"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 PASS getCSSText("shape-outside", "polygon(nonzero, 10px 10px, 20px 20px, 30px 30 px) margin-box") is "polygon(10px 10px, 20px 20px, 30px 30px) margin-box" 158 PASS getCSSText("shape-outside", "polygon(nonzero, 10px 10px, 20px 20px, 30px 30 px) margin-box") is "polygon(10px 10px, 20px 20px, 30px 30px) margin-box"
159 PASS getComputedStyleValue("shape-outside", "polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px) margin-box") is "polygon(10px 10px, 20px 20px, 30px 30px) margin- box" 159 PASS getComputedStyleValue("shape-outside", "polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px) margin-box") is "polygon(10px 10px, 20px 20px, 30px 30px) margin- box"
160 PASS getCSSText("shape-outside", "content-box polygon(nonzero, 10px 10px, 20px 2 0px, 30px 30px)") is "content-box polygon(10px 10px, 20px 20px, 30px 30px)" 160 PASS getCSSText("shape-outside", "content-box polygon(nonzero, 10px 10px, 20px 2 0px, 30px 30px)") is "content-box polygon(10px 10px, 20px 20px, 30px 30px)"
161 PASS getComputedStyleValue("shape-outside", "content-box polygon(nonzero, 10px 1 0px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) conten t-box" 161 PASS getComputedStyleValue("shape-outside", "content-box polygon(nonzero, 10px 1 0px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) conten t-box"
162 PASS getCSSText("shape-outside", "padding-box polygon(nonzero, 10px 10px, 20px 2 0px, 30px 30px)") is "padding-box polygon(10px 10px, 20px 20px, 30px 30px)" 162 PASS getCSSText("shape-outside", "padding-box polygon(nonzero, 10px 10px, 20px 2 0px, 30px 30px)") is "padding-box polygon(10px 10px, 20px 20px, 30px 30px)"
163 PASS getComputedStyleValue("shape-outside", "padding-box polygon(nonzero, 10px 1 0px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) paddin g-box" 163 PASS getComputedStyleValue("shape-outside", "padding-box polygon(nonzero, 10px 1 0px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) paddin g-box"
164 PASS getCSSText("shape-outside", "border-box polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px)") is "border-box polygon(10px 10px, 20px 20px, 30px 30px)" 164 PASS getCSSText("shape-outside", "border-box polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px)") is "border-box polygon(10px 10px, 20px 20px, 30px 30px)"
165 PASS getComputedStyleValue("shape-outside", "border-box polygon(nonzero, 10px 10 px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) border- box" 165 PASS getComputedStyleValue("shape-outside", "border-box polygon(nonzero, 10px 10 px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) border- box"
166 PASS getCSSText("shape-outside", "margin-box polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px)") is "margin-box polygon(10px 10px, 20px 20px, 30px 30px)" 166 PASS getCSSText("shape-outside", "margin-box polygon(nonzero, 10px 10px, 20px 20 px, 30px 30px)") is "margin-box polygon(10px 10px, 20px 20px, 30px 30px)"
167 PASS getComputedStyleValue("shape-outside", "margin-box polygon(nonzero, 10px 10 px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) margin- box" 167 PASS getComputedStyleValue("shape-outside", "margin-box polygon(nonzero, 10px 10 px, 20px 20px, 30px 30px)") is "polygon(10px 10px, 20px 20px, 30px 30px) margin- box"
168 PASS getCSSText("shape-outside", "linear-gradient(to right, red, blue)") is "lin ear-gradient(to right, red, blue)"
169 PASS getComputedStyleValue("shape-outside", "linear-gradient(to right, red, blue )") is "linear-gradient(to right, red, blue)"
170 PASS getCSSText("shape-outside", "radial-gradient(at 10px 20px, red 0%, blue 50% , green 95%)") is "radial-gradient(at 10px 20px, red 0%, blue 50%, green 95%)"
171 PASS getComputedStyleValue("shape-outside", "radial-gradient(at 10px 20px, red 0 %, blue 50%, green 95%)") is "radial-gradient(at 10px 20px, red 0%, blue 50%, gr een 95%)"
168 PASS removeBaseURL(getCSSText("shape-outside", "url('image')")) is "url(image)" 172 PASS removeBaseURL(getCSSText("shape-outside", "url('image')")) is "url(image)"
169 PASS removeBaseURL(getComputedStyleValue("shape-outside", "url('image')")) is "u rl(image)" 173 PASS removeBaseURL(getComputedStyleValue("shape-outside", "url('image')")) is "u rl(image)"
170 PASS getCSSText("shape-outside", "calc()") is "" 174 PASS getCSSText("shape-outside", "calc()") is ""
171 PASS getComputedStyleValue("shape-outside", "calc()") is "none" 175 PASS getComputedStyleValue("shape-outside", "calc()") is "none"
172 PASS getCSSText("shape-outside", "auto") is "" 176 PASS getCSSText("shape-outside", "auto") is ""
173 PASS getComputedStyleValue("shape-outside", "auto") is "none" 177 PASS getComputedStyleValue("shape-outside", "auto") is "none"
174 PASS getCSSText("shape-outside", "inset()") is "" 178 PASS getCSSText("shape-outside", "inset()") is ""
175 PASS getComputedStyleValue("shape-outside", "inset()") is "none" 179 PASS getComputedStyleValue("shape-outside", "inset()") is "none"
176 PASS getCSSText("shape-outside", "inset(10px, 10px)") is "" 180 PASS getCSSText("shape-outside", "inset(10px, 10px)") is ""
177 PASS getComputedStyleValue("shape-outside", "inset(10px, 10px)") is "none" 181 PASS getComputedStyleValue("shape-outside", "inset(10px, 10px)") is "none"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "none", "cir cle(30px at 10px 20px)") is "parent: none, child: circle(30px at 10px 20px)" 286 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "none", "cir cle(30px at 10px 20px)") is "parent: none, child: circle(30px at 10px 20px)"
283 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "initial") is "parent: circle(30px at 10px 20px), child: none" 287 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "initial") is "parent: circle(30px at 10px 20px), child: none"
284 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "") is "parent: circle(30px at 10px 20px), child: none" 288 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "") is "parent: circle(30px at 10px 20px), child: none"
285 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "inherit") is "parent: circle(30px at 10px 20px), child: circle (30px at 10px 20px)" 289 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px at 10px 20px)", "inherit") is "parent: circle(30px at 10px 20px), child: circle (30px at 10px 20px)"
286 PASS getParentAndChildComputedStylesString("shape-outside", "", "inherit") is "p arent: none, child: none" 290 PASS getParentAndChildComputedStylesString("shape-outside", "", "inherit") is "p arent: none, child: none"
287 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i s "parent: none, child: none" 291 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i s "parent: none, child: none"
288 PASS successfullyParsed is true 292 PASS successfullyParsed is true
289 293
290 TEST COMPLETE 294 TEST COMPLETE
291 295
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/parsing/parsing-test-utils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698