| 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 17 matching lines...) Expand all Loading... |
| 28 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is none | 28 getComputedStyle(el).getPropertyValue('-webkit-wrap-through') is none |
| 29 | 29 |
| 30 el.style.setProperty('grid-auto-columns', 'auto') | 30 el.style.setProperty('grid-auto-columns', 'auto') |
| 31 el.style.getPropertyValue('grid-auto-columns') is auto | 31 el.style.getPropertyValue('grid-auto-columns') is auto |
| 32 getComputedStyle(el).getPropertyValue('grid-auto-columns') is auto | 32 getComputedStyle(el).getPropertyValue('grid-auto-columns') is auto |
| 33 | 33 |
| 34 el.style.setProperty('grid-auto-rows', 'auto') | 34 el.style.setProperty('grid-auto-rows', 'auto') |
| 35 el.style.getPropertyValue('grid-auto-rows') is auto | 35 el.style.getPropertyValue('grid-auto-rows') is auto |
| 36 getComputedStyle(el).getPropertyValue('grid-auto-rows') is auto | 36 getComputedStyle(el).getPropertyValue('grid-auto-rows') is auto |
| 37 | 37 |
| 38 el.style.setProperty('grid-definition-columns', 'min-content') | 38 el.style.setProperty('grid-template-columns', 'min-content') |
| 39 el.style.getPropertyValue('grid-definition-columns') is min-content | 39 el.style.getPropertyValue('grid-template-columns') is min-content |
| 40 getComputedStyle(el).getPropertyValue('grid-definition-columns') is min-content | 40 getComputedStyle(el).getPropertyValue('grid-template-columns') is min-content |
| 41 | 41 |
| 42 el.style.setProperty('grid-definition-rows', 'max-content') | 42 el.style.setProperty('grid-template-rows', 'max-content') |
| 43 el.style.getPropertyValue('grid-definition-rows') is max-content | 43 el.style.getPropertyValue('grid-template-rows') is max-content |
| 44 getComputedStyle(el).getPropertyValue('grid-definition-rows') is max-content | 44 getComputedStyle(el).getPropertyValue('grid-template-rows') is max-content |
| 45 | 45 |
| 46 el.style.setProperty('grid-column-start', 'auto') | 46 el.style.setProperty('grid-column-start', 'auto') |
| 47 el.style.getPropertyValue('grid-column-start') is auto | 47 el.style.getPropertyValue('grid-column-start') is auto |
| 48 getComputedStyle(el).getPropertyValue('grid-column-start') is auto | 48 getComputedStyle(el).getPropertyValue('grid-column-start') is auto |
| 49 | 49 |
| 50 el.style.setProperty('grid-column-end', '2') | 50 el.style.setProperty('grid-column-end', '2') |
| 51 el.style.getPropertyValue('grid-column-end') is 2 | 51 el.style.getPropertyValue('grid-column-end') is 2 |
| 52 getComputedStyle(el).getPropertyValue('grid-column-end') is 2 | 52 getComputedStyle(el).getPropertyValue('grid-column-end') is 2 |
| 53 | 53 |
| 54 el.style.setProperty('grid-row-start', '1') | 54 el.style.setProperty('grid-row-start', '1') |
| (...skipping 25 matching lines...) Expand all Loading... |
| 80 getComputedStyle(el).getPropertyValue('text-align-last') is start | 80 getComputedStyle(el).getPropertyValue('text-align-last') is start |
| 81 | 81 |
| 82 el.style.setProperty('text-justify', 'distribute') | 82 el.style.setProperty('text-justify', 'distribute') |
| 83 el.style.getPropertyValue('text-justify') is distribute | 83 el.style.getPropertyValue('text-justify') is distribute |
| 84 getComputedStyle(el).getPropertyValue('text-justify') is distribute | 84 getComputedStyle(el).getPropertyValue('text-justify') is distribute |
| 85 | 85 |
| 86 PASS successfullyParsed is true | 86 PASS successfullyParsed is true |
| 87 | 87 |
| 88 TEST COMPLETE | 88 TEST COMPLETE |
| 89 | 89 |
| OLD | NEW |