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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/editing/data/underline.js

Issue 2630243004: Manually import wpt/editing and wpt/selection/ (Closed)
Patch Set: Add expectation Created 3 years, 11 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
(Empty)
1 var browserTests = [
2 ["foo[]bar",
3 [["underline",""]],
4 "foo[]bar",
5 [true],
6 {"underline":[false,false,"",false,true,""]}],
7 ["<p>[foo</p> <p>bar]</p>",
8 [["stylewithcss","true"],["underline",""]],
9 "<p><span style=\"text-decoration:underline\">[foo</span></p> <p><span style =\"text-decoration:underline\">bar]</span></p>",
10 [true,true],
11 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
12 ["<p>[foo</p> <p>bar]</p>",
13 [["stylewithcss","false"],["underline",""]],
14 "<p><u>[foo</u></p> <p><u>bar]</u></p>",
15 [true,true],
16 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
17 ["<span>[foo</span> <span>bar]</span>",
18 [["stylewithcss","true"],["underline",""]],
19 "<span style=\"text-decoration:underline\"><span>[foo</span> <span>bar]</spa n></span>",
20 [true,true],
21 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
22 ["<span>[foo</span> <span>bar]</span>",
23 [["stylewithcss","false"],["underline",""]],
24 "<u><span>[foo</span> <span>bar]</span></u>",
25 [true,true],
26 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
27 ["<p>[foo</p><p> <span>bar</span> </p><p>baz]</p>",
28 [["stylewithcss","true"],["underline",""]],
29 "<p><span style=\"text-decoration:underline\">[foo</span></p><p> <span style =\"text-decoration:underline\"><span>bar</span></span> </p><p><span style=\"text -decoration:underline\">baz]</span></p>",
30 [true,true],
31 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
32 ["<p>[foo</p><p> <span>bar</span> </p><p>baz]</p>",
33 [["stylewithcss","false"],["underline",""]],
34 "<p><u>[foo</u></p><p> <u><span>bar</span></u> </p><p><u>baz]</u></p>",
35 [true,true],
36 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
37 ["<p>[foo<p><br><p>bar]",
38 [["stylewithcss","true"],["underline",""]],
39 "<p><span style=\"text-decoration:underline\">[foo</span></p><p><span style= \"text-decoration:underline\"><br></span></p><p><span style=\"text-decoration:un derline\">bar]</span></p>",
40 [true,true],
41 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
42 ["<p>[foo<p><br><p>bar]",
43 [["stylewithcss","false"],["underline",""]],
44 "<p><u>[foo</u></p><p><u><br></u></p><p><u>bar]</u></p>",
45 [true,true],
46 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
47 ["<b>foo[]bar</b>",
48 [["underline",""]],
49 "<b>foo[]bar</b>",
50 [true],
51 {"underline":[false,false,"",false,true,""]}],
52 ["<i>foo[]bar</i>",
53 [["underline",""]],
54 "<i>foo[]bar</i>",
55 [true],
56 {"underline":[false,false,"",false,true,""]}],
57 ["<span>foo</span>{}<span>bar</span>",
58 [["underline",""]],
59 "<span>foo</span>{}<span>bar</span>",
60 [true],
61 {"underline":[false,false,"",false,true,""]}],
62 ["<span>foo[</span><span>]bar</span>",
63 [["underline",""]],
64 "<span>foo[</span><span>]bar</span>",
65 [true],
66 {"underline":[false,false,"",false,true,""]}],
67 ["foo[bar]baz",
68 [["stylewithcss","true"],["underline",""]],
69 "foo<span style=\"text-decoration:underline\">[bar]</span>baz",
70 [true,true],
71 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
72 ["foo[bar]baz",
73 [["stylewithcss","false"],["underline",""]],
74 "foo<u>[bar]</u>baz",
75 [true,true],
76 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
77 ["foo[bar<b>baz]qoz</b>quz",
78 [["stylewithcss","true"],["underline",""]],
79 "foo<span style=\"text-decoration:underline\">[bar</span><b><span style=\"te xt-decoration:underline\">baz]</span>qoz</b>quz",
80 [true,true],
81 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
82 ["foo[bar<b>baz]qoz</b>quz",
83 [["stylewithcss","false"],["underline",""]],
84 "foo<u>[bar</u><b><u>baz]</u>qoz</b>quz",
85 [true,true],
86 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
87 ["foo[bar<i>baz]qoz</i>quz",
88 [["stylewithcss","true"],["underline",""]],
89 "foo<span style=\"text-decoration:underline\">[bar</span><i><span style=\"te xt-decoration:underline\">baz]</span>qoz</i>quz",
90 [true,true],
91 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
92 ["foo[bar<i>baz]qoz</i>quz",
93 [["stylewithcss","false"],["underline",""]],
94 "foo<u>[bar</u><i><u>baz]</u>qoz</i>quz",
95 [true,true],
96 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
97 ["{<p><p> <p>foo</p>}",
98 [["stylewithcss","true"],["underline",""]],
99 "{<p></p><p> </p><p><span style=\"text-decoration:underline\">foo</span></p> }",
100 [true,true],
101 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
102 ["{<p><p> <p>foo</p>}",
103 [["stylewithcss","false"],["underline",""]],
104 "{<p></p><p> </p><p><u>foo</u></p>}",
105 [true,true],
106 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
107 ["<table><tbody><tr><td>foo<td>b[a]r<td>baz</table>",
108 [["stylewithcss","true"],["underline",""]],
109 "<table><tbody><tr><td>foo</td><td>b<span style=\"text-decoration:underline\ ">[a]</span>r</td><td>baz</td></tr></tbody></table>",
110 [true,true],
111 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
112 ["<table><tbody><tr><td>foo<td>b[a]r<td>baz</table>",
113 [["stylewithcss","false"],["underline",""]],
114 "<table><tbody><tr><td>foo</td><td>b<u>[a]</u>r</td><td>baz</td></tr></tbody ></table>",
115 [true,true],
116 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
117 ["<table><tbody><tr data-start=1 data-end=2><td>foo<td>bar<td>baz</table>",
118 [["stylewithcss","true"],["underline",""]],
119 "<table><tbody><tr><td>foo</td>{<td><span style=\"text-decoration:underline\ ">bar</span></td>}<td>baz</td></tr></tbody></table>",
120 [true,true],
121 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
122 ["<table><tbody><tr data-start=1 data-end=2><td>foo<td>bar<td>baz</table>",
123 [["stylewithcss","false"],["underline",""]],
124 "<table><tbody><tr><td>foo</td>{<td><u>bar</u></td>}<td>baz</td></tr></tbody ></table>",
125 [true,true],
126 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
127 ["<table><tbody><tr data-start=0 data-end=2><td>foo<td>bar<td>baz</table>",
128 [["stylewithcss","true"],["underline",""]],
129 "<table><tbody><tr>{<td><span style=\"text-decoration:underline\">foo</span> </td><td><span style=\"text-decoration:underline\">bar</span></td>}<td>baz</td>< /tr></tbody></table>",
130 [true,true],
131 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
132 ["<table><tbody><tr data-start=0 data-end=2><td>foo<td>bar<td>baz</table>",
133 [["stylewithcss","false"],["underline",""]],
134 "<table><tbody><tr>{<td><u>foo</u></td><td><u>bar</u></td>}<td>baz</td></tr> </tbody></table>",
135 [true,true],
136 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
137 ["<table><tbody data-start=0 data-end=1><tr><td>foo<td>bar<td>baz</table>",
138 [["stylewithcss","true"],["underline",""]],
139 "<table><tbody>{<tr><td><span style=\"text-decoration:underline\">foo</span> </td><td><span style=\"text-decoration:underline\">bar</span></td><td><span styl e=\"text-decoration:underline\">baz</span></td></tr>}</tbody></table>",
140 [true,true],
141 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
142 ["<table><tbody data-start=0 data-end=1><tr><td>foo<td>bar<td>baz</table>",
143 [["stylewithcss","false"],["underline",""]],
144 "<table><tbody>{<tr><td><u>foo</u></td><td><u>bar</u></td><td><u>baz</u></td ></tr>}</tbody></table>",
145 [true,true],
146 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
147 ["<table data-start=0 data-end=1><tbody><tr><td>foo<td>bar<td>baz</table>",
148 [["stylewithcss","true"],["underline",""]],
149 "<table>{<tbody><tr><td><span style=\"text-decoration:underline\">foo</span> </td><td><span style=\"text-decoration:underline\">bar</span></td><td><span styl e=\"text-decoration:underline\">baz</span></td></tr></tbody>}</table>",
150 [true,true],
151 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
152 ["<table data-start=0 data-end=1><tbody><tr><td>foo<td>bar<td>baz</table>",
153 [["stylewithcss","false"],["underline",""]],
154 "<table>{<tbody><tr><td><u>foo</u></td><td><u>bar</u></td><td><u>baz</u></td ></tr></tbody>}</table>",
155 [true,true],
156 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
157 ["{<table><tr><td>foo<td>bar<td>baz</table>}",
158 [["stylewithcss","true"],["underline",""]],
159 "{<table><tbody><tr><td><span style=\"text-decoration:underline\">foo</span> </td><td><span style=\"text-decoration:underline\">bar</span></td><td><span styl e=\"text-decoration:underline\">baz</span></td></tr></tbody></table>}",
160 [true,true],
161 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
162 ["{<table><tr><td>foo<td>bar<td>baz</table>}",
163 [["stylewithcss","false"],["underline",""]],
164 "{<table><tbody><tr><td><u>foo</u></td><td><u>bar</u></td><td><u>baz</u></td ></tr></tbody></table>}",
165 [true,true],
166 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
167 ["foo<u>[bar]</u>baz",
168 [["stylewithcss","true"],["underline",""]],
169 "foo[bar]baz",
170 [true,true],
171 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
172 ["foo<u>[bar]</u>baz",
173 [["stylewithcss","false"],["underline",""]],
174 "foo[bar]baz",
175 [true,true],
176 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
177 ["foo<span style=\"text-decoration: underline\">[bar]</span>baz",
178 [["stylewithcss","true"],["underline",""]],
179 "foo[bar]baz",
180 [true,true],
181 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
182 ["foo<span style=\"text-decoration: underline\">[bar]</span>baz",
183 [["stylewithcss","false"],["underline",""]],
184 "foo[bar]baz",
185 [true,true],
186 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
187 ["<u>foo[bar]baz</u>",
188 [["stylewithcss","true"],["underline",""]],
189 "<span style=\"text-decoration:underline\">foo</span>[bar]<span style=\"text -decoration:underline\">baz</span>",
190 [true,true],
191 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
192 ["<u>foo[bar]baz</u>",
193 [["stylewithcss","false"],["underline",""]],
194 "<u>foo</u>[bar]<u>baz</u>",
195 [true,true],
196 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
197 ["<u>foo[b<span style=\"color:blue\">ar]ba</span>z</u>",
198 [["stylewithcss","true"],["underline",""]],
199 "<span style=\"text-decoration:underline\">foo</span>[b<span style=\"color:r gb(0, 0, 255)\">ar]<span style=\"text-decoration:underline\">ba</span></span><sp an style=\"text-decoration:underline\">z</span>",
200 [true,true],
201 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
202 ["<u>foo[b<span style=\"color:blue\">ar]ba</span>z</u>",
203 [["stylewithcss","false"],["underline",""]],
204 "<u>foo</u>[b<span style=\"color:rgb(0, 0, 255)\">ar]<u>ba</u></span><u>z</u >",
205 [true,true],
206 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
207 ["<u>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</u>",
208 [["stylewithcss","true"],["underline",""]],
209 "<span style=\"text-decoration:underline\">foo</span>[b<span style=\"color:r gb(0, 0, 255)\" id=\"foo\">ar]<span style=\"text-decoration:underline\">ba</span ></span><span style=\"text-decoration:underline\">z</span>",
210 [true,true],
211 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
212 ["<u>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</u>",
213 [["stylewithcss","false"],["underline",""]],
214 "<u>foo</u>[b<span style=\"color:rgb(0, 0, 255)\" id=\"foo\">ar]<u>ba</u></s pan><u>z</u>",
215 [true,true],
216 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
217 ["<u>foo[b<span style=\"font-size:3em\">ar]ba</span>z</u>",
218 [["stylewithcss","true"],["underline",""]],
219 "<span style=\"text-decoration:underline\">foo</span>[b<span style=\"font-si ze:3em\">ar]<span style=\"text-decoration:underline\">ba</span></span><span styl e=\"text-decoration:underline\">z</span>",
220 [true,true],
221 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
222 ["<u>foo[b<span style=\"font-size:3em\">ar]ba</span>z</u>",
223 [["stylewithcss","false"],["underline",""]],
224 "<u>foo</u>[b<span style=\"font-size:3em\">ar]<u>ba</u></span><u>z</u>",
225 [true,true],
226 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
227 ["<u>foo[b<i>ar]ba</i>z</u>",
228 [["stylewithcss","true"],["underline",""]],
229 "<span style=\"text-decoration:underline\">foo</span>[b<i>ar]<span style=\"t ext-decoration:underline\">ba</span></i><span style=\"text-decoration:underline\ ">z</span>",
230 [true,true],
231 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
232 ["<u>foo[b<i>ar]ba</i>z</u>",
233 [["stylewithcss","false"],["underline",""]],
234 "<u>foo</u>[b<i>ar]<u>ba</u></i><u>z</u>",
235 [true,true],
236 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
237 ["<p style=\"text-decoration: underline\">foo[bar]baz</p>",
238 [["stylewithcss","true"],["underline",""]],
239 "<p><span style=\"text-decoration:underline\">foo</span>[bar]<span style=\"t ext-decoration:underline\">baz</span></p>",
240 [true,true],
241 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
242 ["<p style=\"text-decoration: underline\">foo[bar]baz</p>",
243 [["stylewithcss","false"],["underline",""]],
244 "<p><u>foo</u>[bar]<u>baz</u></p>",
245 [true,true],
246 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
247 ["foo<s>[bar]</s>baz",
248 [["stylewithcss","true"],["underline",""]],
249 "foo<span style=\"text-decoration:underline\"><s>[bar]</s></span>baz",
250 [true,true],
251 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
252 ["foo<s>[bar]</s>baz",
253 [["stylewithcss","false"],["underline",""]],
254 "foo<u><s>[bar]</s></u>baz",
255 [true,true],
256 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
257 ["foo<span style=\"text-decoration: line-through\">[bar]</span>baz",
258 [["stylewithcss","true"],["underline",""]],
259 "foo<span style=\"text-decoration:underline\"><span style=\"text-decoration: line-through\">[bar]</span></span>baz",
260 [true,true],
261 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
262 ["foo<span style=\"text-decoration: line-through\">[bar]</span>baz",
263 [["stylewithcss","false"],["underline",""]],
264 "foo<u><span style=\"text-decoration:line-through\">[bar]</span></u>baz",
265 [true,true],
266 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
267 ["<s>foo[bar]baz</s>",
268 [["stylewithcss","true"],["underline",""]],
269 "<s>foo<span style=\"text-decoration:underline\">[bar]</span>baz</s>",
270 [true,true],
271 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
272 ["<s>foo[bar]baz</s>",
273 [["stylewithcss","false"],["underline",""]],
274 "<s>foo<u>[bar]</u>baz</s>",
275 [true,true],
276 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
277 ["<s>foo[b<span style=\"color:blue\">ar]ba</span>z</s>",
278 [["stylewithcss","true"],["underline",""]],
279 "<s>foo<span style=\"text-decoration:underline\">[b</span><span style=\"colo r:rgb(0, 0, 255)\"><span style=\"text-decoration:underline\">ar]</span>ba</span> z</s>",
280 [true,true],
281 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
282 ["<s>foo[b<span style=\"color:blue\">ar]ba</span>z</s>",
283 [["stylewithcss","false"],["underline",""]],
284 "<s>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\"><u>ar]</u>ba</span>z</s >",
285 [true,true],
286 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
287 ["<s>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</s>",
288 [["stylewithcss","true"],["underline",""]],
289 "<s>foo<span style=\"text-decoration:underline\">[b</span><span style=\"colo r:rgb(0, 0, 255)\" id=\"foo\"><span style=\"text-decoration:underline\">ar]</spa n>ba</span>z</s>",
290 [true,true],
291 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
292 ["<s>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</s>",
293 [["stylewithcss","false"],["underline",""]],
294 "<s>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\" id=\"foo\"><u>ar]</u>ba </span>z</s>",
295 [true,true],
296 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
297 ["<s>foo[b<span style=\"font-size:3em\">ar]ba</span>z</s>",
298 [["stylewithcss","true"],["underline",""]],
299 "<s>foo<span style=\"text-decoration:underline\">[b</span><span style=\"font -size:3em\"><span style=\"text-decoration:underline\">ar]</span>ba</span>z</s>",
300 [true,true],
301 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
302 ["<s>foo[b<span style=\"font-size:3em\">ar]ba</span>z</s>",
303 [["stylewithcss","false"],["underline",""]],
304 "<s>foo<u>[b</u><span style=\"font-size:3em\"><u>ar]</u>ba</span>z</s>",
305 [true,true],
306 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
307 ["<s>foo[b<i>ar]ba</i>z</s>",
308 [["stylewithcss","true"],["underline",""]],
309 "<s>foo<span style=\"text-decoration:underline\">[b</span><i><span style=\"t ext-decoration:underline\">ar]</span>ba</i>z</s>",
310 [true,true],
311 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
312 ["<s>foo[b<i>ar]ba</i>z</s>",
313 [["stylewithcss","false"],["underline",""]],
314 "<s>foo<u>[b</u><i><u>ar]</u>ba</i>z</s>",
315 [true,true],
316 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
317 ["<p style=\"text-decoration: line-through\">foo[bar]baz</p>",
318 [["stylewithcss","true"],["underline",""]],
319 "<p style=\"text-decoration:line-through\">foo<span style=\"text-decoration: underline\">[bar]</span>baz</p>",
320 [true,true],
321 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
322 ["<p style=\"text-decoration: line-through\">foo[bar]baz</p>",
323 [["stylewithcss","false"],["underline",""]],
324 "<p style=\"text-decoration:line-through\">foo<u>[bar]</u>baz</p>",
325 [true,true],
326 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
327 ["foo<strike>[bar]</strike>baz",
328 [["stylewithcss","true"],["underline",""]],
329 "foo<span style=\"text-decoration:underline\"><strike>[bar]</strike></span>b az",
330 [true,true],
331 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
332 ["foo<strike>[bar]</strike>baz",
333 [["stylewithcss","false"],["underline",""]],
334 "foo<u><strike>[bar]</strike></u>baz",
335 [true,true],
336 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
337 ["<strike>foo[bar]baz</strike>",
338 [["stylewithcss","true"],["underline",""]],
339 "<strike>foo<span style=\"text-decoration:underline\">[bar]</span>baz</strik e>",
340 [true,true],
341 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
342 ["<strike>foo[bar]baz</strike>",
343 [["stylewithcss","false"],["underline",""]],
344 "<strike>foo<u>[bar]</u>baz</strike>",
345 [true,true],
346 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
347 ["<strike>foo[b<span style=\"color:blue\">ar]ba</span>z</strike>",
348 [["stylewithcss","true"],["underline",""]],
349 "<strike>foo<span style=\"text-decoration:underline\">[b</span><span style=\ "color:rgb(0, 0, 255)\"><span style=\"text-decoration:underline\">ar]</span>ba</ span>z</strike>",
350 [true,true],
351 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
352 ["<strike>foo[b<span style=\"color:blue\">ar]ba</span>z</strike>",
353 [["stylewithcss","false"],["underline",""]],
354 "<strike>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\"><u>ar]</u>ba</span >z</strike>",
355 [true,true],
356 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
357 ["<strike>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</strike>",
358 [["stylewithcss","true"],["underline",""]],
359 "<strike>foo<span style=\"text-decoration:underline\">[b</span><span style=\ "color:rgb(0, 0, 255)\" id=\"foo\"><span style=\"text-decoration:underline\">ar] </span>ba</span>z</strike>",
360 [true,true],
361 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
362 ["<strike>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</strike>",
363 [["stylewithcss","false"],["underline",""]],
364 "<strike>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\" id=\"foo\"><u>ar]< /u>ba</span>z</strike>",
365 [true,true],
366 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
367 ["<strike>foo[b<span style=\"font-size:3em\">ar]ba</span>z</strike>",
368 [["stylewithcss","true"],["underline",""]],
369 "<strike>foo<span style=\"text-decoration:underline\">[b</span><span style=\ "font-size:3em\"><span style=\"text-decoration:underline\">ar]</span>ba</span>z< /strike>",
370 [true,true],
371 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
372 ["<strike>foo[b<span style=\"font-size:3em\">ar]ba</span>z</strike>",
373 [["stylewithcss","false"],["underline",""]],
374 "<strike>foo<u>[b</u><span style=\"font-size:3em\"><u>ar]</u>ba</span>z</str ike>",
375 [true,true],
376 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
377 ["<strike>foo[b<i>ar]ba</i>z</strike>",
378 [["stylewithcss","true"],["underline",""]],
379 "<strike>foo<span style=\"text-decoration:underline\">[b</span><i><span styl e=\"text-decoration:underline\">ar]</span>ba</i>z</strike>",
380 [true,true],
381 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
382 ["<strike>foo[b<i>ar]ba</i>z</strike>",
383 [["stylewithcss","false"],["underline",""]],
384 "<strike>foo<u>[b</u><i><u>ar]</u>ba</i>z</strike>",
385 [true,true],
386 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
387 ["foo<ins>[bar]</ins>baz",
388 [["underline",""]],
389 "foo<ins>[bar]</ins>baz",
390 [true],
391 {"underline":[false,true,"",false,true,""]}],
392 ["<ins>foo[bar]baz</ins>",
393 [["underline",""]],
394 "<ins>foo[bar]baz</ins>",
395 [true],
396 {"underline":[false,true,"",false,true,""]}],
397 ["<ins>foo[b<span style=\"color:blue\">ar]ba</span>z</ins>",
398 [["underline",""]],
399 "<ins>foo[b<span style=\"color:rgb(0, 0, 255)\">ar]ba</span>z</ins>",
400 [true],
401 {"underline":[false,true,"",false,true,""]}],
402 ["<ins>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</ins>",
403 [["underline",""]],
404 "<ins>foo[b<span style=\"color:rgb(0, 0, 255)\" id=\"foo\">ar]ba</span>z</in s>",
405 [true],
406 {"underline":[false,true,"",false,true,""]}],
407 ["<ins>foo[b<span style=\"font-size:3em\">ar]ba</span>z</ins>",
408 [["underline",""]],
409 "<ins>foo[b<span style=\"font-size:3em\">ar]ba</span>z</ins>",
410 [true],
411 {"underline":[false,true,"",false,true,""]}],
412 ["<ins>foo[b<i>ar]ba</i>z</ins>",
413 [["underline",""]],
414 "<ins>foo[b<i>ar]ba</i>z</ins>",
415 [true],
416 {"underline":[false,true,"",false,true,""]}],
417 ["foo<del>[bar]</del>baz",
418 [["stylewithcss","true"],["underline",""]],
419 "foo<span style=\"text-decoration:underline\"><del>[bar]</del></span>baz",
420 [true,true],
421 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
422 ["foo<del>[bar]</del>baz",
423 [["stylewithcss","false"],["underline",""]],
424 "foo<u><del>[bar]</del></u>baz",
425 [true,true],
426 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
427 ["<del>foo[bar]baz</del>",
428 [["stylewithcss","true"],["underline",""]],
429 "<del>foo<span style=\"text-decoration:underline\">[bar]</span>baz</del>",
430 [true,true],
431 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
432 ["<del>foo[bar]baz</del>",
433 [["stylewithcss","false"],["underline",""]],
434 "<del>foo<u>[bar]</u>baz</del>",
435 [true,true],
436 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
437 ["<del>foo[b<span style=\"color:blue\">ar]ba</span>z</del>",
438 [["stylewithcss","true"],["underline",""]],
439 "<del>foo<span style=\"text-decoration:underline\">[b</span><span style=\"co lor:rgb(0, 0, 255)\"><span style=\"text-decoration:underline\">ar]</span>ba</spa n>z</del>",
440 [true,true],
441 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
442 ["<del>foo[b<span style=\"color:blue\">ar]ba</span>z</del>",
443 [["stylewithcss","false"],["underline",""]],
444 "<del>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\"><u>ar]</u>ba</span>z< /del>",
445 [true,true],
446 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
447 ["<del>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</del>",
448 [["stylewithcss","true"],["underline",""]],
449 "<del>foo<span style=\"text-decoration:underline\">[b</span><span style=\"co lor:rgb(0, 0, 255)\" id=\"foo\"><span style=\"text-decoration:underline\">ar]</s pan>ba</span>z</del>",
450 [true,true],
451 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
452 ["<del>foo[b<span style=\"color:blue\" id=foo>ar]ba</span>z</del>",
453 [["stylewithcss","false"],["underline",""]],
454 "<del>foo<u>[b</u><span style=\"color:rgb(0, 0, 255)\" id=\"foo\"><u>ar]</u> ba</span>z</del>",
455 [true,true],
456 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
457 ["<del>foo[b<span style=\"font-size:3em\">ar]ba</span>z</del>",
458 [["stylewithcss","true"],["underline",""]],
459 "<del>foo<span style=\"text-decoration:underline\">[b</span><span style=\"fo nt-size:3em\"><span style=\"text-decoration:underline\">ar]</span>ba</span>z</de l>",
460 [true,true],
461 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
462 ["<del>foo[b<span style=\"font-size:3em\">ar]ba</span>z</del>",
463 [["stylewithcss","false"],["underline",""]],
464 "<del>foo<u>[b</u><span style=\"font-size:3em\"><u>ar]</u>ba</span>z</del>",
465 [true,true],
466 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
467 ["<del>foo[b<i>ar]ba</i>z</del>",
468 [["stylewithcss","true"],["underline",""]],
469 "<del>foo<span style=\"text-decoration:underline\">[b</span><i><span style=\ "text-decoration:underline\">ar]</span>ba</i>z</del>",
470 [true,true],
471 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
472 ["<del>foo[b<i>ar]ba</i>z</del>",
473 [["stylewithcss","false"],["underline",""]],
474 "<del>foo<u>[b</u><i><u>ar]</u>ba</i>z</del>",
475 [true,true],
476 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
477 ["foo<span style=\"text-decoration: underline line-through\">[bar]</span>baz",
478 [["underline",""]],
479 "foo<span style=\"text-decoration:line-through\">[bar]</span>baz",
480 [true],
481 {"underline":[false,true,"",false,false,""]}],
482 ["foo<span style=\"text-decoration: underline line-through\">b[a]r</span>baz",
483 [["stylewithcss","true"],["underline",""]],
484 "foo<span style=\"text-decoration:line-through\"><span style=\"text-decorati on:underline\">b</span>[a]<span style=\"text-decoration:underline\">r</span></sp an>baz",
485 [true,true],
486 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
487 ["foo<span style=\"text-decoration: underline line-through\">b[a]r</span>baz",
488 [["stylewithcss","false"],["underline",""]],
489 "foo<span style=\"text-decoration:line-through\"><u>b</u>[a]<u>r</u></span>b az",
490 [true,true],
491 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
492 ["foo<s style=\"text-decoration: underline\">[bar]</s>baz",
493 [["stylewithcss","true"],["underline",""]],
494 "foo[bar]baz",
495 [true,true],
496 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
497 ["foo<s style=\"text-decoration: underline\">[bar]</s>baz",
498 [["stylewithcss","false"],["underline",""]],
499 "foo[bar]baz",
500 [true,true],
501 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
502 ["foo<s style=\"text-decoration: underline\">b[a]r</s>baz",
503 [["stylewithcss","true"],["underline",""]],
504 "foo<span style=\"text-decoration:underline\">b</span>[a]<span style=\"text- decoration:underline\">r</span>baz",
505 [true,true],
506 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
507 ["foo<s style=\"text-decoration: underline\">b[a]r</s>baz",
508 [["stylewithcss","false"],["underline",""]],
509 "foo<u>b</u>[a]<u>r</u>baz",
510 [true,true],
511 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
512 ["foo<u style=\"text-decoration: line-through\">[bar]</u>baz",
513 [["stylewithcss","true"],["underline",""]],
514 "foo<span style=\"text-decoration:underline\"><u style=\"text-decoration:lin e-through\">[bar]</u></span>baz",
515 [true,true],
516 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
517 ["foo<u style=\"text-decoration: line-through\">[bar]</u>baz",
518 [["stylewithcss","false"],["underline",""]],
519 "foo<u><u style=\"text-decoration:line-through\">[bar]</u></u>baz",
520 [true,true],
521 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
522 ["foo<u style=\"text-decoration: line-through\">b[a]r</u>baz",
523 [["stylewithcss","true"],["underline",""]],
524 "foo<u style=\"text-decoration:line-through\">b<span style=\"text-decoration :underline\">[a]</span>r</u>baz",
525 [true,true],
526 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
527 ["foo<u style=\"text-decoration: line-through\">b[a]r</u>baz",
528 [["stylewithcss","false"],["underline",""]],
529 "foo<u style=\"text-decoration:line-through\">b<u>[a]</u>r</u>baz",
530 [true,true],
531 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
532 ["foo<s style=\"text-decoration: overline\">[bar]</s>baz",
533 [["stylewithcss","true"],["underline",""]],
534 "foo<span style=\"text-decoration:underline\"><s style=\"text-decoration:ove rline\">[bar]</s></span>baz",
535 [true,true],
536 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
537 ["foo<s style=\"text-decoration: overline\">[bar]</s>baz",
538 [["stylewithcss","false"],["underline",""]],
539 "foo<u><s style=\"text-decoration:overline\">[bar]</s></u>baz",
540 [true,true],
541 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
542 ["foo<s style=\"text-decoration: overline\">b[a]r</s>baz",
543 [["stylewithcss","true"],["underline",""]],
544 "foo<s style=\"text-decoration:overline\">b<span style=\"text-decoration:und erline\">[a]</span>r</s>baz",
545 [true,true],
546 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
547 ["foo<s style=\"text-decoration: overline\">b[a]r</s>baz",
548 [["stylewithcss","false"],["underline",""]],
549 "foo<s style=\"text-decoration:overline\">b<u>[a]</u>r</s>baz",
550 [true,true],
551 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
552 ["foo<u style=\"text-decoration: overline\">[bar]</u>baz",
553 [["stylewithcss","true"],["underline",""]],
554 "foo<span style=\"text-decoration:underline\"><u style=\"text-decoration:ove rline\">[bar]</u></span>baz",
555 [true,true],
556 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
557 ["foo<u style=\"text-decoration: overline\">[bar]</u>baz",
558 [["stylewithcss","false"],["underline",""]],
559 "foo<u><u style=\"text-decoration:overline\">[bar]</u></u>baz",
560 [true,true],
561 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
562 ["foo<u style=\"text-decoration: overline\">b[a]r</u>baz",
563 [["stylewithcss","true"],["underline",""]],
564 "foo<u style=\"text-decoration:overline\">b<span style=\"text-decoration:und erline\">[a]</span>r</u>baz",
565 [true,true],
566 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
567 ["foo<u style=\"text-decoration: overline\">b[a]r</u>baz",
568 [["stylewithcss","false"],["underline",""]],
569 "foo<u style=\"text-decoration:overline\">b<u>[a]</u>r</u>baz",
570 [true,true],
571 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
572 ["<p style=\"text-decoration: line-through\">foo[bar]baz</p>",
573 [["stylewithcss","true"],["underline",""]],
574 "<p style=\"text-decoration:line-through\">foo<span style=\"text-decoration: underline\">[bar]</span>baz</p>",
575 [true,true],
576 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
577 ["<p style=\"text-decoration: line-through\">foo[bar]baz</p>",
578 [["stylewithcss","false"],["underline",""]],
579 "<p style=\"text-decoration:line-through\">foo<u>[bar]</u>baz</p>",
580 [true,true],
581 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
582 ["<p style=\"text-decoration: overline\">foo[bar]baz</p>",
583 [["stylewithcss","true"],["underline",""]],
584 "<p style=\"text-decoration:overline\">foo<span style=\"text-decoration:unde rline\">[bar]</span>baz</p>",
585 [true,true],
586 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
587 ["<p style=\"text-decoration: overline\">foo[bar]baz</p>",
588 [["stylewithcss","false"],["underline",""]],
589 "<p style=\"text-decoration:overline\">foo<u>[bar]</u>baz</p>",
590 [true,true],
591 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
592 ["foo<span class=\"underline\">[bar]</span>baz",
593 [["underline",""]],
594 "foo<span class=\"underline\">[bar]</span>baz",
595 [true],
596 {"underline":[false,true,"",false,true,""]}],
597 ["foo<span class=\"underline\">b[a]r</span>baz",
598 [["underline",""]],
599 "foo<span class=\"underline\">b[a]r</span>baz",
600 [true],
601 {"underline":[false,true,"",false,true,""]}],
602 ["foo<span class=\"line-through\">[bar]</span>baz",
603 [["stylewithcss","true"],["underline",""]],
604 "foo<span style=\"text-decoration:underline\"><span class=\"line-through\">[ bar]</span></span>baz",
605 [true,true],
606 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
607 ["foo<span class=\"line-through\">[bar]</span>baz",
608 [["stylewithcss","false"],["underline",""]],
609 "foo<u><span class=\"line-through\">[bar]</span></u>baz",
610 [true,true],
611 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
612 ["foo<span class=\"line-through\">b[a]r</span>baz",
613 [["stylewithcss","true"],["underline",""]],
614 "foo<span class=\"line-through\">b<span style=\"text-decoration:underline\"> [a]</span>r</span>baz",
615 [true,true],
616 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,false,"",f alse,true,""]}],
617 ["foo<span class=\"line-through\">b[a]r</span>baz",
618 [["stylewithcss","false"],["underline",""]],
619 "foo<span class=\"line-through\">b<u>[a]</u>r</span>baz",
620 [true,true],
621 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,false,"",f alse,true,""]}],
622 ["foo<span class=\"underline-and-line-through\">[bar]</span>baz",
623 [["underline",""]],
624 "foo<span class=\"underline-and-line-through\">[bar]</span>baz",
625 [true],
626 {"underline":[false,true,"",false,true,""]}],
627 ["foo<span class=\"underline-and-line-through\">b[a]r</span>baz",
628 [["underline",""]],
629 "foo<span class=\"underline-and-line-through\">b[a]r</span>baz",
630 [true],
631 {"underline":[false,true,"",false,true,""]}],
632 ["fo[o<u>b]ar</u>baz",
633 [["underline",""]],
634 "fo<u>[ob]ar</u>baz",
635 [true],
636 {"underline":[true,false,"",false,true,""]}],
637 ["foo<u>ba[r</u>b]az",
638 [["underline",""]],
639 "foo<u>ba[rb]</u>az",
640 [true],
641 {"underline":[true,false,"",false,true,""]}],
642 ["fo[o<u>bar</u>b]az",
643 [["stylewithcss","true"],["underline",""]],
644 "fo<span style=\"text-decoration:underline\">[obarb]</span>az",
645 [true,true],
646 {"stylewithcss":[false,false,"",false,true,""],"underline":[true,false,"",fa lse,true,""]}],
647 ["fo[o<u>bar</u>b]az",
648 [["stylewithcss","false"],["underline",""]],
649 "fo<u>[obarb]</u>az",
650 [true,true],
651 {"stylewithcss":[false,true,"",false,false,""],"underline":[true,false,"",fa lse,true,""]}],
652 ["foo[<u>b]ar</u>baz",
653 [["stylewithcss","true"],["underline",""]],
654 "foo[b]<span style=\"text-decoration:underline\">ar</span>baz",
655 [true,true],
656 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
657 ["foo[<u>b]ar</u>baz",
658 [["stylewithcss","false"],["underline",""]],
659 "foo[b]<u>ar</u>baz",
660 [true,true],
661 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
662 ["foo<u>ba[r</u>]baz",
663 [["stylewithcss","true"],["underline",""]],
664 "foo<span style=\"text-decoration:underline\">ba</span>[r]baz",
665 [true,true],
666 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
667 ["foo<u>ba[r</u>]baz",
668 [["stylewithcss","false"],["underline",""]],
669 "foo<u>ba</u>[r]baz",
670 [true,true],
671 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
672 ["foo[<u>bar</u>]baz",
673 [["stylewithcss","true"],["underline",""]],
674 "foo[bar]baz",
675 [true,true],
676 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
677 ["foo[<u>bar</u>]baz",
678 [["stylewithcss","false"],["underline",""]],
679 "foo[bar]baz",
680 [true,true],
681 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
682 ["foo<u>[bar]</u>baz",
683 [["stylewithcss","true"],["underline",""]],
684 "foo[bar]baz",
685 [true,true],
686 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
687 ["foo<u>[bar]</u>baz",
688 [["stylewithcss","false"],["underline",""]],
689 "foo[bar]baz",
690 [true,true],
691 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
692 ["foo{<u>bar</u>}baz",
693 [["stylewithcss","true"],["underline",""]],
694 "foo{bar}baz",
695 [true,true],
696 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",fa lse,false,""]}],
697 ["foo{<u>bar</u>}baz",
698 [["stylewithcss","false"],["underline",""]],
699 "foo{bar}baz",
700 [true,true],
701 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",fa lse,false,""]}],
702 ["fo[o<span style=text-decoration:underline>b]ar</span>baz",
703 [["underline",""]],
704 "fo<span style=\"text-decoration:underline\">[ob]ar</span>baz",
705 [true],
706 {"underline":[true,false,"",false,true,""]}],
707 ["<ins>fo[o</ins><u>b]ar</u>",
708 [["stylewithcss","true"],["underline",""]],
709 "<ins>fo[o</ins>b]<span style=\"text-decoration:underline\">ar</span>",
710 [true,true],
711 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",tr ue,false,""]}],
712 ["<ins>fo[o</ins><u>b]ar</u>",
713 [["stylewithcss","false"],["underline",""]],
714 "<ins>fo[o</ins>b]<u>ar</u>",
715 [true,true],
716 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",tr ue,false,""]}],
717 ["<u>fo[o</u><ins>b]ar</ins>",
718 [["stylewithcss","true"],["underline",""]],
719 "<span style=\"text-decoration:underline\">fo</span>[o<ins>b]ar</ins>",
720 [true,true],
721 {"stylewithcss":[false,false,"",false,true,""],"underline":[false,true,"",tr ue,false,""]}],
722 ["<u>fo[o</u><ins>b]ar</ins>",
723 [["stylewithcss","false"],["underline",""]],
724 "<u>fo</u>[o<ins>b]ar</ins>",
725 [true,true],
726 {"stylewithcss":[false,true,"",false,false,""],"underline":[false,true,"",tr ue,false,""]}]
727 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698