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

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

Issue 255193002: [CSS Shapes] complex calc args for inset round vanish (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove unneeded one parameter LengthSize version Created 6 years, 7 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 PASS getCSSText("shape-outside", "inset(10px round 10px 20px 10px 20px)") is "in set(10px round 10px 20px)" 62 PASS getCSSText("shape-outside", "inset(10px round 10px 20px 10px 20px)") is "in set(10px round 10px 20px)"
63 PASS getComputedStyleValue("shape-outside", "inset(10px round 10px 20px 10px 20p x)") is "inset(10px round 10px 20px)" 63 PASS getComputedStyleValue("shape-outside", "inset(10px round 10px 20px 10px 20p x)") is "inset(10px round 10px 20px)"
64 PASS getCSSText("shape-outside", "inset(10px 20px 30px 40px round 5px 6px)") is "inset(10px 20px 30px 40px round 5px 6px)" 64 PASS getCSSText("shape-outside", "inset(10px 20px 30px 40px round 5px 6px)") is "inset(10px 20px 30px 40px round 5px 6px)"
65 PASS getComputedStyleValue("shape-outside", "inset(10px 20px 30px 40px round 5px 6px)") is "inset(10px 20px 30px 40px round 5px 6px)" 65 PASS getComputedStyleValue("shape-outside", "inset(10px 20px 30px 40px round 5px 6px)") is "inset(10px 20px 30px 40px round 5px 6px)"
66 PASS getCSSText("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8p x / 50px 60px 70px 80px)") is "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)" 66 PASS getCSSText("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8p x / 50px 60px 70px 80px)") is "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)"
67 PASS getComputedStyleValue("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)") is "inset(10px 20px 30px 40px round 5px 6p x 7px 8px / 50px 60px 70px 80px)" 67 PASS getComputedStyleValue("shape-outside", "inset(10px 20px 30px 40px round 5px 6px 7px 8px / 50px 60px 70px 80px)") is "inset(10px 20px 30px 40px round 5px 6p x 7px 8px / 50px 60px 70px 80px)"
68 PASS getCSSText("shape-outside", "inset(10px round 0px / 10px)") is "inset(10px round 0px / 10px)" 68 PASS getCSSText("shape-outside", "inset(10px round 0px / 10px)") is "inset(10px round 0px / 10px)"
69 PASS getComputedStyleValue("shape-outside", "inset(10px round 0px / 10px)") is " inset(10px round 0px / 10px)" 69 PASS getComputedStyleValue("shape-outside", "inset(10px round 0px / 10px)") is " inset(10px round 0px / 10px)"
70 PASS getCSSText("shape-outside", "inset(calc(25%*3 - 10in) 0 0 0)") is "inset(ca lc(75% - 10in) 0px 0px)" 70 PASS getCSSText("shape-outside", "inset(calc(25%*3 - 10in) 0 0 0)") is "inset(ca lc(75% - 10in) 0px 0px)"
71 PASS getComputedStyleValue("shape-outside", "inset(calc(25%*3 - 10in) 0 0 0)") i s "inset(calc(-960px + 75%) 0px 0px)" 71 PASS getComputedStyleValue("shape-outside", "inset(calc(25%*3 - 10in) 0 0 0)") i s "inset(calc(-960px + 75%) 0px 0px)"
72 PASS getCSSText("shape-outside", "inset(10px 10px 10px 10px round calc(25%*3 - 1 0in))") is "inset(10px round calc(75% - 10in))"
73 PASS getComputedStyleValue("shape-outside", "inset(10px 10px 10px 10px round cal c(25%*3 - 10in))") is "inset(10px round calc(-960px + 75%))"
72 PASS getCSSText("shape-outside", "circle()") is "circle(at 50% 50%)" 74 PASS getCSSText("shape-outside", "circle()") is "circle(at 50% 50%)"
73 PASS getComputedStyleValue("shape-outside", "circle()") is "circle(closest-side at 50% 50%)" 75 PASS getComputedStyleValue("shape-outside", "circle()") is "circle(closest-side at 50% 50%)"
74 PASS getCSSText("shape-outside", "circle(farthest-side)") is "circle(farthest-si de at 50% 50%)" 76 PASS getCSSText("shape-outside", "circle(farthest-side)") is "circle(farthest-si de at 50% 50%)"
75 PASS getComputedStyleValue("shape-outside", "circle(farthest-side)") is "circle( farthest-side at 50% 50%)" 77 PASS getComputedStyleValue("shape-outside", "circle(farthest-side)") is "circle( farthest-side at 50% 50%)"
76 PASS getCSSText("shape-outside", "circle(closest-side)") is "circle(closest-side at 50% 50%)" 78 PASS getCSSText("shape-outside", "circle(closest-side)") is "circle(closest-side at 50% 50%)"
77 PASS getComputedStyleValue("shape-outside", "circle(closest-side)") is "circle(c losest-side at 50% 50%)" 79 PASS getComputedStyleValue("shape-outside", "circle(closest-side)") is "circle(c losest-side at 50% 50%)"
78 PASS getCSSText("shape-outside", "circle(10px)") is "circle(10px at 50% 50%)" 80 PASS getCSSText("shape-outside", "circle(10px)") is "circle(10px at 50% 50%)"
79 PASS getComputedStyleValue("shape-outside", "circle(10px)") is "circle(10px at 5 0% 50%)" 81 PASS getComputedStyleValue("shape-outside", "circle(10px)") is "circle(10px at 5 0% 50%)"
80 PASS getCSSText("shape-outside", "circle(10px at 10px)") is "circle(10px at 10px 50%)" 82 PASS getCSSText("shape-outside", "circle(10px at 10px)") is "circle(10px at 10px 50%)"
81 PASS getComputedStyleValue("shape-outside", "circle(10px at 10px)") is "circle(1 0px at 10px 50%)" 83 PASS getComputedStyleValue("shape-outside", "circle(10px at 10px)") is "circle(1 0px at 10px 50%)"
(...skipping 200 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)" 284 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" 285 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" 286 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)" 287 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" 288 PASS getParentAndChildComputedStylesString("shape-outside", "", "inherit") is "p arent: none, child: none"
287 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i s "parent: none, child: none" 289 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i s "parent: none, child: none"
288 PASS successfullyParsed is true 290 PASS successfullyParsed is true
289 291
290 TEST COMPLETE 292 TEST COMPLETE
291 293
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