| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "font-size": true, | 163 "font-size": true, |
| 164 "font-style": true, | 164 "font-style": true, |
| 165 "font-variant": true, | 165 "font-variant": true, |
| 166 "font-variant-ligatures": true, | 166 "font-variant-ligatures": true, |
| 167 "font-weight": true, | 167 "font-weight": true, |
| 168 "glyph-orientation-horizontal": true, | 168 "glyph-orientation-horizontal": true, |
| 169 "glyph-orientation-vertical": true, | 169 "glyph-orientation-vertical": true, |
| 170 "height": true, | 170 "height": true, |
| 171 "image-rendering": true, | 171 "image-rendering": true, |
| 172 "justify-content": true, | 172 "justify-content": true, |
| 173 "justify-items": true, |
| 174 "justify-self": true, |
| 173 "left": true, | 175 "left": true, |
| 174 "letter-spacing": true, | 176 "letter-spacing": true, |
| 175 "lighting-color": true, | 177 "lighting-color": true, |
| 176 "line-height": true, | 178 "line-height": true, |
| 177 "list-style-image": true, | 179 "list-style-image": true, |
| 178 "list-style-position": true, | 180 "list-style-position": true, |
| 179 "list-style-type": true, | 181 "list-style-type": true, |
| 180 "margin-bottom": true, | 182 "margin-bottom": true, |
| 181 "margin-left": true, | 183 "margin-left": true, |
| 182 "margin-right": true, | 184 "margin-right": true, |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 // There properties don't show up when iterating a computed style object, | 251 // There properties don't show up when iterating a computed style object, |
| 250 // but we do want to dump their values in tests. | 252 // but we do want to dump their values in tests. |
| 251 var hiddenComputedStyleProperties = [ | 253 var hiddenComputedStyleProperties = [ |
| 252 "background-position-x", | 254 "background-position-x", |
| 253 "background-position-y", | 255 "background-position-y", |
| 254 "border-spacing", | 256 "border-spacing", |
| 255 "overflow", | 257 "overflow", |
| 256 "-webkit-mask-position-x", | 258 "-webkit-mask-position-x", |
| 257 "-webkit-mask-position-y", | 259 "-webkit-mask-position-y", |
| 258 ]; | 260 ]; |
| OLD | NEW |