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

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

Issue 20526006: Remove -webkit-hyphens and -webkit-hyphenate-limit-* properties. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: init removal Created 7 years, 4 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 | Annotate | Revision Log
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 30 matching lines...) Expand all
41 "-webkit-column-rule-width": true, 41 "-webkit-column-rule-width": true,
42 "-webkit-column-span": true, 42 "-webkit-column-span": true,
43 "-webkit-column-width": true, 43 "-webkit-column-width": true,
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-hyphenate-limit-after": true,
52 "-webkit-hyphenate-limit-before": true,
53 "-webkit-hyphenate-limit-lines": true,
54 "-webkit-hyphens": true,
55 "-webkit-line-align": true, 51 "-webkit-line-align": true,
56 "-webkit-line-box-contain": true, 52 "-webkit-line-box-contain": true,
57 "-webkit-line-break": true, 53 "-webkit-line-break": true,
58 "-webkit-line-clamp": true, 54 "-webkit-line-clamp": true,
59 "-webkit-line-grid": true, 55 "-webkit-line-grid": true,
60 "-webkit-line-snap": true, 56 "-webkit-line-snap": true,
61 "-webkit-locale": true, 57 "-webkit-locale": true,
62 "-webkit-margin-after-collapse": true, 58 "-webkit-margin-after-collapse": true,
63 "-webkit-margin-before-collapse": true, 59 "-webkit-margin-before-collapse": true,
64 "-webkit-marquee-direction": true, 60 "-webkit-marquee-direction": true,
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 // 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,
256 // but we do want to dump their values in tests. 252 // but we do want to dump their values in tests.
257 var hiddenComputedStyleProperties = [ 253 var hiddenComputedStyleProperties = [
258 "background-position-x", 254 "background-position-x",
259 "background-position-y", 255 "background-position-y",
260 "border-spacing", 256 "border-spacing",
261 "overflow", 257 "overflow",
262 "-webkit-mask-position-x", 258 "-webkit-mask-position-x",
263 "-webkit-mask-position-y", 259 "-webkit-mask-position-y",
264 ]; 260 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698