OLD | NEW |
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 10px 10px 10px)" | 8 PASS getCSSText("shape-outside", "inset(10px)") is "inset(10px 10px 10px 10px)" |
9 PASS getComputedStyleValue("shape-outside", "inset(10px)") is "inset(10px 10px 1
0px 10px round 0px 0px 0px 0px / 0px 0px 0px 0px)" | 9 PASS getComputedStyleValue("shape-outside", "inset(10px)") is "inset(10px 10px 1
0px 10px round 0px 0px 0px 0px / 0px 0px 0px 0px)" |
10 PASS getCSSText("shape-outside", "inset(10px 9px)") is "inset(10px 9px 10px 9px)
" | 10 PASS getCSSText("shape-outside", "inset(10px 9px)") is "inset(10px 9px 10px 9px)
" |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 PASS getCSSText("shape-outside", "content-box polygon(none)") is "" | 254 PASS getCSSText("shape-outside", "content-box polygon(none)") is "" |
255 PASS getComputedStyleValue("shape-outside", "content-box polygon(none)") is "non
e" | 255 PASS getComputedStyleValue("shape-outside", "content-box polygon(none)") is "non
e" |
256 PASS getCSSText("shape-outside", "circle(50px) none") is "" | 256 PASS getCSSText("shape-outside", "circle(50px) none") is "" |
257 PASS getComputedStyleValue("shape-outside", "circle(50px) none") is "none" | 257 PASS getComputedStyleValue("shape-outside", "circle(50px) none") is "none" |
258 PASS getCSSText("shape-outside", "none circle(50px)") is "" | 258 PASS getCSSText("shape-outside", "none circle(50px)") is "" |
259 PASS getComputedStyleValue("shape-outside", "none circle(50px)") is "none" | 259 PASS getComputedStyleValue("shape-outside", "none circle(50px)") is "none" |
260 PASS getCSSText("shape-outside", "url('shape.svg') content-box") is "" | 260 PASS getCSSText("shape-outside", "url('shape.svg') content-box") is "" |
261 PASS getComputedStyleValue("shape-outside", "url('shape.svg') content-box") is "
none" | 261 PASS getComputedStyleValue("shape-outside", "url('shape.svg') content-box") is "
none" |
262 PASS getCSSText("shape-outside", "url('shape.svg') polygon(nonzero, 0 0, 10px 10
px, 10px 0)") is "" | 262 PASS getCSSText("shape-outside", "url('shape.svg') polygon(nonzero, 0 0, 10px 10
px, 10px 0)") is "" |
263 PASS getComputedStyleValue("shape-outside", "url('shape.svg') polygon(nonzero, 0
0, 10px 10px, 10px 0)") is "none" | 263 PASS getComputedStyleValue("shape-outside", "url('shape.svg') polygon(nonzero, 0
0, 10px 10px, 10px 0)") is "none" |
264 PASS getCSSText("shape-outside", "outside-shape") is "" | |
265 PASS getComputedStyleValue("shape-outside", "outside-shape") is "none" | |
266 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "none", "cir
cle(30px at 10px 20px)") is "parent: none, child: circle(30px at 10px 20px)" | 264 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "none", "cir
cle(30px at 10px 20px)") is "parent: none, child: circle(30px at 10px 20px)" |
267 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "initial") is "parent: circle(30px at 10px 20px), child: none" | 265 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "initial") is "parent: circle(30px at 10px 20px), child: none" |
268 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "") is "parent: circle(30px at 10px 20px), child: none" | 266 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "") is "parent: circle(30px at 10px 20px), child: none" |
269 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "inherit") is "parent: circle(30px at 10px 20px), child: circle
(30px at 10px 20px)" | 267 PASS getParentAndChildComputedStylesString("-webkit-shape-outside", "circle(30px
at 10px 20px)", "inherit") is "parent: circle(30px at 10px 20px), child: circle
(30px at 10px 20px)" |
270 PASS getParentAndChildComputedStylesString("shape-outside", "", "inherit") is "p
arent: none, child: none" | 268 PASS getParentAndChildComputedStylesString("shape-outside", "", "inherit") is "p
arent: none, child: none" |
271 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i
s "parent: none, child: none" | 269 PASS getParentAndChildComputedStylesString("shape-outside", "none", "inherit") i
s "parent: none, child: none" |
272 PASS successfullyParsed is true | 270 PASS successfullyParsed is true |
273 | 271 |
274 TEST COMPLETE | 272 TEST COMPLETE |
275 | 273 |
OLD | NEW |