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

Side by Side Diff: LayoutTests/svg/css/glyph-orientation-rounding-test-expected.txt

Issue 700843006: Don't require getPropertyCSSValue in svg tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 Stress test glyph-orientation SVG CSS properties 1 Stress test glyph-orientation SVG CSS properties
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 Strings that fail to parse, and hence parse as "0" for horziontal and "auto" as vertical. 7 Strings that fail to parse, and hence parse as "0" for horziontal and "auto" as vertical.
8 8
9 Test angleValue: ' 0,1' 9 Test angleValue: ' 0,1'
10 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 10 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
11 11
12 Test angleValue: ' 0,1' 12 Test angleValue: ' 0,1'
13 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 13 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
14 14
15 Test angleValue: ' 0,00000.1' 15 Test angleValue: ' 0,00000.1'
16 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 16 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
17 17
18 Test angleValue: ' 0,00000.1' 18 Test angleValue: ' 0,00000.1'
19 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 19 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
20 20
21 Test angleValue: ' 0 1' 21 Test angleValue: ' 0 1'
22 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 22 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
23 23
24 Test angleValue: ' 0 1' 24 Test angleValue: ' 0 1'
25 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 25 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
26 26
27 Test angleValue: '0.1 0.2' 27 Test angleValue: '0.1 0.2'
28 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 28 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
29 29
30 Test angleValue: '0.1 0.2' 30 Test angleValue: '0.1 0.2'
31 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 31 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
32 32
33 Test angleValue: ' 270,1' 33 Test angleValue: ' 270,1'
34 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 34 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
35 35
36 Test angleValue: ' 270,1' 36 Test angleValue: ' 270,1'
37 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 37 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
38 38
39 Test angleValue: ' 270,00000.1' 39 Test angleValue: ' 270,00000.1'
40 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 40 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
41 41
42 Test angleValue: ' 270,00000.1' 42 Test angleValue: ' 270,00000.1'
43 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 43 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
44 44
45 Test angleValue: ' 270 1' 45 Test angleValue: ' 270 1'
46 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 46 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
47 47
48 Test angleValue: ' 270 1' 48 Test angleValue: ' 270 1'
49 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 49 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
50 50
51 Test angleValue: '270.1 0.2' 51 Test angleValue: '270.1 0.2'
52 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 52 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
53 53
54 Test angleValue: '270.1 0.2' 54 Test angleValue: '270.1 0.2'
55 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto" 55 PASS computedStyle.getPropertyValue('glyph-orientation-vertical') is "auto"
56 56
57 This tests the rounding of glyph orientation values to the only allowed values 0 , 90, 180, 270. 57 This tests the rounding of glyph orientation values to the only allowed values 0 , 90, 180, 270.
58 58
59 Test angleValue: '-0.0' 59 Test angleValue: '-0.0'
60 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 60 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
61 61
62 Test angleValue: '-0.0' 62 Test angleValue: '-0.0'
63 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 63 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
64 64
65 Test angleValue: '-10.0' 65 Test angleValue: '-10.0'
66 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 66 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
67 67
68 Test angleValue: '-10.0' 68 Test angleValue: '-10.0'
69 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 69 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
70 70
71 Test angleValue: '-45.0' 71 Test angleValue: '-45.0'
72 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 72 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
73 73
74 Test angleValue: '-45.0' 74 Test angleValue: '-45.0'
75 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 75 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
76 76
77 Test angleValue: '0.0' 77 Test angleValue: '0.0'
78 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 78 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
79 79
80 Test angleValue: '0.0' 80 Test angleValue: '0.0'
81 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 81 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
82 82
83 Test angleValue: '10.0' 83 Test angleValue: '10.0'
84 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 84 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
85 85
86 Test angleValue: '10.0' 86 Test angleValue: '10.0'
87 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 87 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
88 88
89 Test angleValue: '45.0' 89 Test angleValue: '45.0'
90 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 90 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
91 91
92 Test angleValue: '45.0' 92 Test angleValue: '45.0'
93 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 93 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
94 94
95 Test angleValue: '-90.0' 95 Test angleValue: '-90.0'
96 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 96 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
97 97
98 Test angleValue: '-90.0' 98 Test angleValue: '-90.0'
99 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 99 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
100 100
101 Test angleValue: '-100.0' 101 Test angleValue: '-100.0'
102 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 102 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
103 103
104 Test angleValue: '-100.0' 104 Test angleValue: '-100.0'
105 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 105 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
106 106
107 Test angleValue: '-135.0' 107 Test angleValue: '-135.0'
108 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 108 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
109 109
110 Test angleValue: '-135.0' 110 Test angleValue: '-135.0'
111 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 111 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
112 112
113 Test angleValue: '90.0' 113 Test angleValue: '90.0'
114 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 114 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
115 115
116 Test angleValue: '90.0' 116 Test angleValue: '90.0'
117 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 117 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
118 118
119 Test angleValue: '100.0' 119 Test angleValue: '100.0'
120 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 120 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
121 121
122 Test angleValue: '100.0' 122 Test angleValue: '100.0'
123 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 123 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
124 124
125 Test angleValue: '135.0' 125 Test angleValue: '135.0'
126 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 126 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
127 127
128 Test angleValue: '135.0' 128 Test angleValue: '135.0'
129 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 129 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
130 130
131 Test angleValue: '-180.0' 131 Test angleValue: '-180.0'
132 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 132 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
133 133
134 Test angleValue: '-180.0' 134 Test angleValue: '-180.0'
135 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 135 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
136 136
137 Test angleValue: '-190.0' 137 Test angleValue: '-190.0'
138 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 138 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
139 139
140 Test angleValue: '-190.0' 140 Test angleValue: '-190.0'
141 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 141 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
142 142
143 Test angleValue: '-225.0' 143 Test angleValue: '-225.0'
144 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 144 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
145 145
146 Test angleValue: '-225.0' 146 Test angleValue: '-225.0'
147 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 147 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
148 148
149 Test angleValue: '180.0' 149 Test angleValue: '180.0'
150 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 150 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
151 151
152 Test angleValue: '180.0' 152 Test angleValue: '180.0'
153 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 153 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
154 154
155 Test angleValue: '190.0' 155 Test angleValue: '190.0'
156 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 156 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
157 157
158 Test angleValue: '190.0' 158 Test angleValue: '190.0'
159 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 159 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
160 160
161 Test angleValue: '225.0' 161 Test angleValue: '225.0'
162 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 162 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
163 163
164 Test angleValue: '225.0' 164 Test angleValue: '225.0'
165 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 165 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
166 166
167 Test angleValue: '-270.0' 167 Test angleValue: '-270.0'
168 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 168 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
169 169
170 Test angleValue: '-270.0' 170 Test angleValue: '-270.0'
171 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 171 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
172 172
173 Test angleValue: '-280.0' 173 Test angleValue: '-280.0'
174 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 174 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
175 175
176 Test angleValue: '-280.0' 176 Test angleValue: '-280.0'
177 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 177 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
178 178
179 Test angleValue: '-305.0' 179 Test angleValue: '-305.0'
180 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 180 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
181 181
182 Test angleValue: '-305.0' 182 Test angleValue: '-305.0'
183 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 183 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
184 184
185 Test angleValue: '270.0' 185 Test angleValue: '270.0'
186 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 186 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
187 187
188 Test angleValue: '270.0' 188 Test angleValue: '270.0'
189 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 189 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
190 190
191 Test angleValue: '280.0' 191 Test angleValue: '280.0'
192 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 192 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
193 193
194 Test angleValue: '280.0' 194 Test angleValue: '280.0'
195 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 195 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
196 196
197 Test angleValue: '305.0' 197 Test angleValue: '305.0'
198 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 198 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
199 199
200 Test angleValue: '305.0' 200 Test angleValue: '305.0'
201 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 201 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
202 202
203 Tests angles bigger than 360. 203 Tests angles bigger than 360.
204 204
205 Test angleValue: '449.0' 205 Test angleValue: '449.0'
206 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 206 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
207 207
208 Test angleValue: '449.0' 208 Test angleValue: '449.0'
209 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 209 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
210 210
211 Test angleValue: '450.0' 211 Test angleValue: '450.0'
212 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 212 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
213 213
214 Test angleValue: '450.0' 214 Test angleValue: '450.0'
215 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 215 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
216 216
217 Test angleValue: '451.0' 217 Test angleValue: '451.0'
218 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 218 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
219 219
220 Test angleValue: '451.0' 220 Test angleValue: '451.0'
221 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 221 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
222 222
223 Test angleValue: '539.0' 223 Test angleValue: '539.0'
224 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 224 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
225 225
226 Test angleValue: '539.0' 226 Test angleValue: '539.0'
227 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 227 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
228 228
229 Test angleValue: '540.0' 229 Test angleValue: '540.0'
230 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 230 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
231 231
232 Test angleValue: '540.0' 232 Test angleValue: '540.0'
233 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 233 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
234 234
235 Test angleValue: '541.0' 235 Test angleValue: '541.0'
236 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 236 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
237 237
238 Test angleValue: '541.0' 238 Test angleValue: '541.0'
239 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 239 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
240 240
241 Test angleValue: '629.0' 241 Test angleValue: '629.0'
242 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 242 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
243 243
244 Test angleValue: '629.0' 244 Test angleValue: '629.0'
245 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 245 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
246 246
247 Test angleValue: '630.0' 247 Test angleValue: '630.0'
248 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 248 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
249 249
250 Test angleValue: '630.0' 250 Test angleValue: '630.0'
251 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 251 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
252 252
253 Test angleValue: '631.0' 253 Test angleValue: '631.0'
254 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 254 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
255 255
256 Test angleValue: '631.0' 256 Test angleValue: '631.0'
257 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 257 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
258 258
259 Tests whitespace before/after angle value. 259 Tests whitespace before/after angle value.
260 260
261 Test angleValue: ' .0 ' 261 Test angleValue: ' .0 '
262 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 262 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
263 263
264 Test angleValue: ' .0 ' 264 Test angleValue: ' .0 '
265 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 265 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
266 266
267 Test angleValue: ' 0 ' 267 Test angleValue: ' 0 '
268 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 268 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
269 269
270 Test angleValue: ' 0 ' 270 Test angleValue: ' 0 '
271 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 271 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
272 272
273 Test angleValue: ' 90.0 ' 273 Test angleValue: ' 90.0 '
274 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 274 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
275 275
276 Test angleValue: ' 90.0 ' 276 Test angleValue: ' 90.0 '
277 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 277 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
278 278
279 Test angleValue: ' 180.0 ' 279 Test angleValue: ' 180.0 '
280 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 280 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
281 281
282 Test angleValue: ' 180.0 ' 282 Test angleValue: ' 180.0 '
283 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 283 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
284 284
285 Test angleValue: ' 270.0 ' 285 Test angleValue: ' 270.0 '
286 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 270 286 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 270
287 287
288 Test angleValue: ' 270.0 ' 288 Test angleValue: ' 270.0 '
289 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 270 289 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 270
290 290
291 Tests rounding of fractional angle values. 291 Tests rounding of fractional angle values.
292 292
293 Test angleValue: '45.0000' 293 Test angleValue: '45.0000'
294 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 0 294 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 0
295 295
296 Test angleValue: '45.0000' 296 Test angleValue: '45.0000'
297 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 0 297 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 0
298 298
299 Test angleValue: '45.0001' 299 Test angleValue: '45.0001'
300 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 300 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
301 301
302 Test angleValue: '45.0001' 302 Test angleValue: '45.0001'
303 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 303 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
304 304
305 Test angleValue: '135.000' 305 Test angleValue: '135.000'
306 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 90 306 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 90
307 307
308 Test angleValue: '135.000' 308 Test angleValue: '135.000'
309 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 90 309 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 90
310 310
311 Test angleValue: '135.001' 311 Test angleValue: '135.001'
312 PASS computedStyle.getPropertyCSSValue('glyph-orientation-horizontal').getFloatV alue(CSSPrimitiveValue.CSS_DEG) is 180 312 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-horizontal')) is 180
313 313
314 Test angleValue: '135.001' 314 Test angleValue: '135.001'
315 PASS computedStyle.getPropertyCSSValue('glyph-orientation-vertical').getFloatVal ue(CSSPrimitiveValue.CSS_DEG) is 180 315 PASS parseFloat(computedStyle.getPropertyValue('glyph-orientation-vertical')) is 180
316 316
317 PASS successfullyParsed is true 317 PASS successfullyParsed is true
318 318
319 TEST COMPLETE 319 TEST COMPLETE
320 320
OLDNEW
« no previous file with comments | « LayoutTests/svg/css/glyph-orientation-rounding-test.xhtml ('k') | LayoutTests/svg/css/rect-system-color.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698