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') |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 getComputedStyle(el).getPropertyValue('grid-area') is 2 / auto / auto / auto | 68 getComputedStyle(el).getPropertyValue('grid-area') is 2 / auto / auto / auto |
69 | 69 |
70 el.style.setProperty('grid-auto-flow', 'column') | 70 el.style.setProperty('grid-auto-flow', 'column') |
71 el.style.getPropertyValue('grid-auto-flow') is column | 71 el.style.getPropertyValue('grid-auto-flow') is column |
72 getComputedStyle(el).getPropertyValue('grid-auto-flow') is column | 72 getComputedStyle(el).getPropertyValue('grid-auto-flow') is column |
73 | 73 |
74 el.style.setProperty('grid-template', '"test"') | 74 el.style.setProperty('grid-template', '"test"') |
75 el.style.getPropertyValue('grid-template') is "test" | 75 el.style.getPropertyValue('grid-template') is "test" |
76 getComputedStyle(el).getPropertyValue('grid-template') is "test" | 76 getComputedStyle(el).getPropertyValue('grid-template') is "test" |
77 | 77 |
| 78 el.style.setProperty('text-align-last', 'start') |
| 79 el.style.getPropertyValue('text-align-last') is start |
| 80 getComputedStyle(el).getPropertyValue('text-align-last') is start |
| 81 |
| 82 el.style.setProperty('text-justify', 'distribute') |
| 83 el.style.getPropertyValue('text-justify') is distribute |
| 84 getComputedStyle(el).getPropertyValue('text-justify') is distribute |
| 85 |
78 PASS successfullyParsed is true | 86 PASS successfullyParsed is true |
79 | 87 |
80 TEST COMPLETE | 88 TEST COMPLETE |
81 | 89 |
OLD | NEW |