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

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

Issue 1783693006: Use <string> serialization rules for computed value of reference filter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 4 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 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 is "url('#a')" 8 PASS filterStyle is "url(\"#a\")"
9 9
10 Bare unquoted reference converting to quoted form : url(#a) 10 Bare unquoted reference converting to quoted form : url(#a)
11 PASS filterStyle is "url('#a')" 11 PASS filterStyle is "url(\"#a\")"
12 12
13 Multiple references : url('#a') url('#b') 13 Multiple references : url('#a') url('#b')
14 PASS filterStyle is "url('#a') url('#b')" 14 PASS filterStyle is "url(\"#a\") url(\"#b\")"
15 15
16 Reference as 2nd value : grayscale(1) url('#a') 16 Reference as 2nd value : grayscale(1) url('#a')
17 PASS filterStyle is "grayscale(1) url('#a')" 17 PASS filterStyle is "grayscale(1) url(\"#a\")"
18 18
19 Integer value : grayscale(1) 19 Integer value : grayscale(1)
20 PASS filterStyle is "grayscale(1)" 20 PASS filterStyle is "grayscale(1)"
21 21
22 Float value converts to integer : grayscale(1.0) 22 Float value converts to integer : grayscale(1.0)
23 PASS filterStyle is "grayscale(1)" 23 PASS filterStyle is "grayscale(1)"
24 24
25 Zero value : grayscale(0) 25 Zero value : grayscale(0)
26 PASS filterStyle is "grayscale(0)" 26 PASS filterStyle is "grayscale(0)"
27 27
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 Multiple operations : grayscale(0.5) sepia(0.25) saturate(0.75) hue-rotate(35deg ) invert(0.2) opacity(0.9) blur(5px) 196 Multiple operations : grayscale(0.5) sepia(0.25) saturate(0.75) hue-rotate(35deg ) invert(0.2) opacity(0.9) blur(5px)
197 PASS filterStyle is "grayscale(0.5) sepia(0.25) saturate(0.75) hue-rotate(35deg) invert(0.2) opacity(0.9) blur(5px)" 197 PASS filterStyle is "grayscale(0.5) sepia(0.25) saturate(0.75) hue-rotate(35deg) invert(0.2) opacity(0.9) blur(5px)"
198 198
199 Percentage values : grayscale(50%) sepia(25%) saturate(75%) invert(20%) opacity( 90%) brightness(60%) contrast(30%) 199 Percentage values : grayscale(50%) sepia(25%) saturate(75%) invert(20%) opacity( 90%) brightness(60%) contrast(30%)
200 PASS filterStyle is "grayscale(0.5) sepia(0.25) saturate(0.75) invert(0.2) opaci ty(0.9) brightness(0.6) contrast(0.3)" 200 PASS filterStyle is "grayscale(0.5) sepia(0.25) saturate(0.75) invert(0.2) opaci ty(0.9) brightness(0.6) contrast(0.3)"
201 PASS successfullyParsed is true 201 PASS successfullyParsed is true
202 202
203 TEST COMPLETE 203 TEST COMPLETE
204 204
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698