Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Side by Side Diff: LayoutTests/fast/css/getComputedStyle/resources/property-names.js

Issue 201573009: Remove -webkit-column-progression and -webkit-column-axis properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master (fixed the DOS-style line break issue there) Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698