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

Side by Side Diff: LayoutTests/css3/filters/filter-property-computed-style-expected.txt

Issue 285643006: Kill WTF::DecimalNumber class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Inline single-line function Created 6 years, 7 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 Test the computed style of the -webkit-filter property. 1 Test the computed style of the -webkit-filter property.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 6
7 Basic reference : url('#a') 7 Basic reference : url('#a')
8 PASS filterStyle.length is 1 8 PASS filterStyle.length is 1
9 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_REFERENCE 9 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_REFERENCE
10 PASS subRule.cssText is 'url(\'#a\')' 10 PASS subRule.cssText is 'url(\'#a\')'
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 PASS subRule.cssText is 'hue-rotate(10deg)' 129 PASS subRule.cssText is 'hue-rotate(10deg)'
130 130
131 Degrees float value converts to integer : hue-rotate(10.0deg) 131 Degrees float value converts to integer : hue-rotate(10.0deg)
132 PASS filterStyle.length is 1 132 PASS filterStyle.length is 1
133 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE 133 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE
134 PASS subRule.cssText is 'hue-rotate(10deg)' 134 PASS subRule.cssText is 'hue-rotate(10deg)'
135 135
136 Radians value : hue-rotate(10rad) 136 Radians value : hue-rotate(10rad)
137 PASS filterStyle.length is 1 137 PASS filterStyle.length is 1
138 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE 138 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE
139 PASS subRule.cssText is 'hue-rotate(572.9577951308232deg)' 139 PASS subRule.cssText is 'hue-rotate(572.957795130823deg)'
140 140
141 Gradians value : hue-rotate(10grad) 141 Gradians value : hue-rotate(10grad)
142 PASS filterStyle.length is 1 142 PASS filterStyle.length is 1
143 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE 143 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE
144 PASS subRule.cssText is 'hue-rotate(9deg)' 144 PASS subRule.cssText is 'hue-rotate(9deg)'
145 145
146 Turns value : hue-rotate(0.5turn) 146 Turns value : hue-rotate(0.5turn)
147 PASS filterStyle.length is 1 147 PASS filterStyle.length is 1
148 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE 148 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_HUE_ROTATE
149 PASS subRule.cssText is 'hue-rotate(180deg)' 149 PASS subRule.cssText is 'hue-rotate(180deg)'
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_OPACITY 381 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_OPACITY
382 PASS subRule.cssText is 'opacity(0.9)' 382 PASS subRule.cssText is 'opacity(0.9)'
383 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_BRIGHTNESS 383 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_BRIGHTNESS
384 PASS subRule.cssText is 'brightness(0.6)' 384 PASS subRule.cssText is 'brightness(0.6)'
385 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_CONTRAST 385 PASS subRule.operationType is WebKitCSSFilterValue.CSS_FILTER_CONTRAST
386 PASS subRule.cssText is 'contrast(0.3)' 386 PASS subRule.cssText is 'contrast(0.3)'
387 PASS successfullyParsed is true 387 PASS successfullyParsed is true
388 388
389 TEST COMPLETE 389 TEST COMPLETE
390 390
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698