| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "-webkit-font-kerning": true, | 44 "-webkit-font-kerning": true, |
| 45 "-webkit-font-smoothing": true, | 45 "-webkit-font-smoothing": true, |
| 46 "-webkit-font-variant-ligatures": true, | 46 "-webkit-font-variant-ligatures": true, |
| 47 "-webkit-grid-column": true, | 47 "-webkit-grid-column": true, |
| 48 "-webkit-grid-row": true, | 48 "-webkit-grid-row": true, |
| 49 "-webkit-highlight": true, | 49 "-webkit-highlight": true, |
| 50 "-webkit-hyphenate-character": true, | 50 "-webkit-hyphenate-character": true, |
| 51 "-webkit-line-align": true, | 51 "-webkit-line-align": true, |
| 52 "-webkit-line-box-contain": true, | 52 "-webkit-line-box-contain": true, |
| 53 "-webkit-line-break": true, | 53 "-webkit-line-break": true, |
| 54 "-webkit-line-clamp": true, | |
| 55 "-webkit-line-grid": true, | 54 "-webkit-line-grid": true, |
| 56 "-webkit-line-snap": true, | 55 "-webkit-line-snap": true, |
| 57 "-webkit-locale": true, | 56 "-webkit-locale": true, |
| 58 "-webkit-margin-after-collapse": true, | 57 "-webkit-margin-after-collapse": true, |
| 59 "-webkit-margin-before-collapse": true, | 58 "-webkit-margin-before-collapse": true, |
| 60 "-webkit-marquee-direction": true, | 59 "-webkit-marquee-direction": true, |
| 61 "-webkit-marquee-increment": true, | 60 "-webkit-marquee-increment": true, |
| 62 "-webkit-marquee-repetition": true, | 61 "-webkit-marquee-repetition": true, |
| 63 "-webkit-marquee-style": true, | 62 "-webkit-marquee-style": true, |
| 64 "-webkit-mask-attachment": true, | 63 "-webkit-mask-attachment": true, |
| (...skipping 186 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 |