OLD | NEW |
---|---|
(Empty) | |
1 Tests CSSLength.parse, CSSShadowModel.parseTextShadow, and CSSShadowModel.parseB oxShadow. | |
2 | |
3 Valid CSSLengths: | |
4 10px | |
lushnikov
2016/08/19 16:24:34
I like this test, good coverage!
I'd suggest enha
flandy
2016/08/19 21:50:39
Done.
| |
5 10PX | |
6 -10px | |
7 10px | |
8 10.11px | |
9 0.11px | |
10 10000px | |
11 10000px | |
12 10110px | |
13 -0.01011px | |
14 0px | |
15 0 | |
16 0 | |
17 0 | |
18 0 | |
19 | |
20 Valid Text Shadows: | |
21 0 0 | |
22 1px 2px | |
23 1px 2px black | |
24 1px 2px 2px | |
25 rgb(0, 0, 0) 1px 2px 2px | |
26 1px 2px 2px rgb(0, 0, 0) | |
27 1px 2px black, 0 0 #ffffff | |
28 1px -2px black, 0 0 rgb(0, 0, 0), 3px 3.5px 3px | |
29 | |
30 Valid Box Shadows: | |
31 0 0 | |
32 1px 2px | |
33 1px 2px black | |
34 1px 2px 2px | |
35 1px 2px 2px 3px | |
36 inset 1px 2px | |
37 1px 2px inset | |
38 inset 1px 2px 2px 3px | |
39 rgb(0, 0, 0) 1px 2px 2px | |
40 inset rgb(0, 0, 0) 1px 2px 2px | |
41 inset 1px 2px 2px 3px rgb(0, 0, 0) | |
42 1px 2px 2px 3px rgb(0, 0, 0) inset | |
43 1px 2px black, inset 0 0 #ffffff | |
44 1px -2px black, inset 0 0 rgb(0, 0, 0), 3px 3.5px 3px 4px | |
45 | |
OLD | NEW |