| OLD | NEW |
| 1 // We only test properties that are exposed in all ports. | 1 // We only test properties that are exposed in all ports. |
| 2 var propertiesToTest = { | 2 var propertiesToTest = { |
| 3 "-webkit-animation-delay": true, | 3 "-webkit-animation-delay": true, |
| 4 "-webkit-animation-direction": true, | 4 "-webkit-animation-direction": true, |
| 5 "-webkit-animation-duration": true, | 5 "-webkit-animation-duration": true, |
| 6 "-webkit-animation-fill-mode": true, | 6 "-webkit-animation-fill-mode": true, |
| 7 "-webkit-animation-iteration-count": true, | 7 "-webkit-animation-iteration-count": true, |
| 8 "-webkit-animation-name": true, | 8 "-webkit-animation-name": true, |
| 9 "-webkit-animation-play-state": true, | 9 "-webkit-animation-play-state": true, |
| 10 "-webkit-animation-timing-function": true, | 10 "-webkit-animation-timing-function": true, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "-webkit-box-direction": true, | 23 "-webkit-box-direction": true, |
| 24 "-webkit-box-flex": true, | 24 "-webkit-box-flex": true, |
| 25 "-webkit-box-flex-group": true, | 25 "-webkit-box-flex-group": true, |
| 26 "-webkit-box-lines": true, | 26 "-webkit-box-lines": true, |
| 27 "-webkit-box-ordinal-group": true, | 27 "-webkit-box-ordinal-group": true, |
| 28 "-webkit-box-orient": true, | 28 "-webkit-box-orient": true, |
| 29 "-webkit-box-pack": true, | 29 "-webkit-box-pack": true, |
| 30 "-webkit-box-reflect": true, | 30 "-webkit-box-reflect": true, |
| 31 "-webkit-box-shadow": true, | 31 "-webkit-box-shadow": true, |
| 32 "-webkit-color-correction": true, | 32 "-webkit-color-correction": true, |
| 33 "-webkit-column-axis": true, | |
| 34 "-webkit-column-break-after": true, | 33 "-webkit-column-break-after": true, |
| 35 "-webkit-column-break-before": true, | 34 "-webkit-column-break-before": true, |
| 36 "-webkit-column-break-inside": true, | 35 "-webkit-column-break-inside": true, |
| 37 "-webkit-column-count": true, | 36 "-webkit-column-count": true, |
| 38 "-webkit-column-gap": true, | 37 "-webkit-column-gap": true, |
| 39 "-webkit-column-rule-color": true, | 38 "-webkit-column-rule-color": true, |
| 40 "-webkit-column-rule-style": true, | 39 "-webkit-column-rule-style": true, |
| 41 "-webkit-column-rule-width": true, | 40 "-webkit-column-rule-width": true, |
| 42 "-webkit-column-span": true, | 41 "-webkit-column-span": true, |
| 43 "-webkit-column-width": true, | 42 "-webkit-column-width": true, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 // There properties don't show up when iterating a computed style object, | 250 // There properties don't show up when iterating a computed style object, |
| 252 // but we do want to dump their values in tests. | 251 // but we do want to dump their values in tests. |
| 253 var hiddenComputedStyleProperties = [ | 252 var hiddenComputedStyleProperties = [ |
| 254 "background-position-x", | 253 "background-position-x", |
| 255 "background-position-y", | 254 "background-position-y", |
| 256 "border-spacing", | 255 "border-spacing", |
| 257 "overflow", | 256 "overflow", |
| 258 "-webkit-mask-position-x", | 257 "-webkit-mask-position-x", |
| 259 "-webkit-mask-position-y", | 258 "-webkit-mask-position-y", |
| 260 ]; | 259 ]; |
| OLD | NEW |