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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-parsing-invalid-expected.txt

Issue 1419223002: Move text-shadow/box-shadow properties into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failures Created 5 years, 1 month 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 parsing of box-shadow. 1 Test the parsing of box-shadow.
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 Negative blur radius value : 10px 10px -1px rgb(255, 0, 0) 7 Negative blur radius value : 10px 10px -1px rgb(255, 0, 0)
8 PASS cssRule.type is 1 8 PASS cssRule.type is 1
9 PASS declaration.length is 0 9 PASS declaration.length is 0
10 PASS declaration.getPropertyValue('box-shadow') is "" 10 PASS declaration.getPropertyValue('box-shadow') is ""
11 11
12 Negative blur radius value, with a spread defined : 10px 10px -1px 10px rgb(255, 0, 0) 12 Negative blur radius value, with a spread defined : 10px 10px -1px 10px rgb(255, 0, 0)
13 PASS cssRule.type is 1 13 PASS cssRule.type is 1
14 PASS declaration.length is 0 14 PASS declaration.length is 0
15 PASS declaration.getPropertyValue('box-shadow') is "" 15 PASS declaration.getPropertyValue('box-shadow') is ""
16 16
17 Negative blur radius value, with a negative spread defined : 10px 10px -1px -1px rgb(255, 0, 0) 17 Negative blur radius value, with a negative spread defined : 10px 10px -1px -1px rgb(255, 0, 0)
18 PASS cssRule.type is 1 18 PASS cssRule.type is 1
19 PASS declaration.length is 0 19 PASS declaration.length is 0
20 PASS declaration.getPropertyValue('box-shadow') is "" 20 PASS declaration.getPropertyValue('box-shadow') is ""
21
22 Extraneous commas at beginning : ,,,,,10px 10px rgb(255, 0, 0)
23 PASS cssRule.type is 1
24 PASS declaration.length is 0
25 PASS declaration.getPropertyValue('box-shadow') is ""
26
27 Extraneous commas at end : 10px 10px rgb(255, 0, 0),,,,,
28 PASS cssRule.type is 1
29 PASS declaration.length is 0
30 PASS declaration.getPropertyValue('box-shadow') is ""
21 PASS successfullyParsed is true 31 PASS successfullyParsed is true
22 32
23 TEST COMPLETE 33 TEST COMPLETE
24 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698