OLD | NEW |
1 Test getting and setting nonstable css properties to non-default values | 1 Test getting and setting nonstable css properties to non-default values |
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 el.style.setProperty('-webkit-shape-margin', '10px') | 6 el.style.setProperty('-webkit-shape-margin', '10px') |
7 el.style.getPropertyValue('-webkit-shape-margin') is 10px | 7 el.style.getPropertyValue('-webkit-shape-margin') is 10px |
8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is 10px | 8 getComputedStyle(el).getPropertyValue('-webkit-shape-margin') is 10px |
9 | 9 |
10 el.style.setProperty('-webkit-shape-padding', '10px') | 10 el.style.setProperty('-webkit-shape-padding', '10px') |
11 el.style.getPropertyValue('-webkit-shape-padding') is 10px | 11 el.style.getPropertyValue('-webkit-shape-padding') is 10px |
12 getComputedStyle(el).getPropertyValue('-webkit-shape-padding') is 10px | 12 getComputedStyle(el).getPropertyValue('-webkit-shape-padding') is 10px |
13 | 13 |
14 el.style.setProperty('-webkit-shape-inside', 'circle(10px at 10px 10px)') | |
15 el.style.getPropertyValue('-webkit-shape-inside') is circle(10px at 10px 10px) | |
16 getComputedStyle(el).getPropertyValue('-webkit-shape-inside') is circle(10px at
10px 10px) | |
17 | |
18 el.style.setProperty('-webkit-shape-outside', 'circle(10px at 10px 10px)') | 14 el.style.setProperty('-webkit-shape-outside', 'circle(10px at 10px 10px)') |
19 el.style.getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px) | 15 el.style.getPropertyValue('-webkit-shape-outside') is circle(10px at 10px 10px) |
20 getComputedStyle(el).getPropertyValue('-webkit-shape-outside') is circle(10px at
10px 10px) | 16 getComputedStyle(el).getPropertyValue('-webkit-shape-outside') is circle(10px at
10px 10px) |
21 | 17 |
22 el.style.setProperty('-webkit-wrap-flow', 'both') | 18 el.style.setProperty('-webkit-wrap-flow', 'both') |
23 el.style.getPropertyValue('-webkit-wrap-flow') is both | 19 el.style.getPropertyValue('-webkit-wrap-flow') is both |
24 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is both | 20 getComputedStyle(el).getPropertyValue('-webkit-wrap-flow') is both |
25 | 21 |
26 el.style.setProperty('-webkit-wrap-through', 'none') | 22 el.style.setProperty('-webkit-wrap-through', 'none') |
27 el.style.getPropertyValue('-webkit-wrap-through') is none | 23 el.style.getPropertyValue('-webkit-wrap-through') is none |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 getComputedStyle(el).getPropertyValue('text-align-last') is start | 76 getComputedStyle(el).getPropertyValue('text-align-last') is start |
81 | 77 |
82 el.style.setProperty('text-justify', 'distribute') | 78 el.style.setProperty('text-justify', 'distribute') |
83 el.style.getPropertyValue('text-justify') is distribute | 79 el.style.getPropertyValue('text-justify') is distribute |
84 getComputedStyle(el).getPropertyValue('text-justify') is distribute | 80 getComputedStyle(el).getPropertyValue('text-justify') is distribute |
85 | 81 |
86 PASS successfullyParsed is true | 82 PASS successfullyParsed is true |
87 | 83 |
88 TEST COMPLETE | 84 TEST COMPLETE |
89 | 85 |
OLD | NEW |