summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/data/createlink.js
blob: 10734d950bb899222a29802a0e32faa324ebff5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// For documentation of the format, see README in this directory.
var browserTests = [
["foo[]bar",
    [["createlink","http://www.google.com/"]],
    "foo[]bar",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<p>[foo</p> <p>bar]</p>",
    [["createlink","http://www.google.com/"]],
    "<p><a href=\"http://www.google.com/\">[foo</a></p> <p><a href=\"http://www.google.com/\">bar]</a></p>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<span>[foo</span> <span>bar]</span>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\"><span>[foo</span> <span>bar]</span></a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<p>[foo</p><p> <span>bar</span> </p><p>baz]</p>",
    [["createlink","http://www.google.com/"]],
    "<p><a href=\"http://www.google.com/\">[foo</a></p><p> <a href=\"http://www.google.com/\"><span>bar</span></a> </p><p><a href=\"http://www.google.com/\">baz]</a></p>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<p>[foo<p><br><p>bar]",
    [["createlink","http://www.google.com/"]],
    "<p><a href=\"http://www.google.com/\">[foo</a></p><p><a href=\"http://www.google.com/\"><br></a></p><p><a href=\"http://www.google.com/\">bar]</a></p>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<b>foo[]bar</b>",
    [["createlink","http://www.google.com/"]],
    "<b>foo[]bar</b>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<i>foo[]bar</i>",
    [["createlink","http://www.google.com/"]],
    "<i>foo[]bar</i>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<span>foo</span>{}<span>bar</span>",
    [["createlink","http://www.google.com/"]],
    "<span>foo</span>{}<span>bar</span>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<span>foo[</span><span>]bar</span>",
    [["createlink","http://www.google.com/"]],
    "<span>foo[</span><span>]bar</span>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[bar]baz",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[bar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[bar<b>baz]qoz</b>quz",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[bar</a><b><a href=\"http://www.google.com/\">baz]</a>qoz</b>quz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[bar<i>baz]qoz</i>quz",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[bar</a><i><a href=\"http://www.google.com/\">baz]</a>qoz</i>quz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<p><p> <p>foo</p>}",
    [["createlink","http://www.google.com/"]],
    "{<p></p><p> </p><p><a href=\"http://www.google.com/\">foo</a></p>}",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<table><tbody><tr><td>foo<td>b[a]r<td>baz</table>",
    [["createlink","http://www.google.com/"]],
    "<table><tbody><tr><td>foo</td><td>b<a href=\"http://www.google.com/\">[a]</a>r</td><td>baz</td></tr></tbody></table>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<table><tbody><tr data-start=1 data-end=2><td>foo<td>bar<td>baz</table>",
    [["createlink","http://www.google.com/"]],
    "<table><tbody><tr><td>foo</td>{<td><a href=\"http://www.google.com/\">bar</a></td>}<td>baz</td></tr></tbody></table>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<table><tbody><tr data-start=0 data-end=2><td>foo<td>bar<td>baz</table>",
    [["createlink","http://www.google.com/"]],
    "<table><tbody><tr>{<td><a href=\"http://www.google.com/\">foo</a></td><td><a href=\"http://www.google.com/\">bar</a></td>}<td>baz</td></tr></tbody></table>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<table><tbody data-start=0 data-end=1><tr><td>foo<td>bar<td>baz</table>",
    [["createlink","http://www.google.com/"]],
    "<table><tbody>{<tr><td><a href=\"http://www.google.com/\">foo</a></td><td><a href=\"http://www.google.com/\">bar</a></td><td><a href=\"http://www.google.com/\">baz</a></td></tr>}</tbody></table>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<table data-start=0 data-end=1><tbody><tr><td>foo<td>bar<td>baz</table>",
    [["createlink","http://www.google.com/"]],
    "<table>{<tbody><tr><td><a href=\"http://www.google.com/\">foo</a></td><td><a href=\"http://www.google.com/\">bar</a></td><td><a href=\"http://www.google.com/\">baz</a></td></tr></tbody>}</table>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<table><tr><td>foo<td>bar<td>baz</table>}",
    [["createlink","http://www.google.com/"]],
    "{<table><tbody><tr><td><a href=\"http://www.google.com/\">foo</a></td><td><a href=\"http://www.google.com/\">bar</a></td><td><a href=\"http://www.google.com/\">baz</a></td></tr></tbody></table>}",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=http://www.google.com/>foo[bar]baz</a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">foo[bar]baz</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=http://www.google.com/>foo[barbaz</a>}",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">foo[barbaz</a>}",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<a href=http://www.google.com/>foobar]baz</a>",
    [["createlink","http://www.google.com/"]],
    "{<a href=\"http://www.google.com/\">foobar]baz</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<a href=http://www.google.com/>foobarbaz</a>}",
    [["createlink","http://www.google.com/"]],
    "{<a href=\"http://www.google.com/\">foobarbaz}</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=http://www.google.com/>[foobarbaz]</a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobarbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo<a href=http://www.google.com/>[bar]</a>baz",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[bar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["[foo]<a href=http://www.google.com/>bar</a>baz",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foo]bar</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo<a href=http://www.google.com/>bar</a>[baz]",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">bar[baz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[<a href=http://www.google.com/>bar</a>]baz",
    [["createlink","http://www.google.com/"]],
    "foo[<a href=\"http://www.google.com/\">bar</a>]baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo<a href=http://www.google.com/>[bar</a>baz]",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[barbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["[foo<a href=http://www.google.com/>bar]</a>baz",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["[foo<a href=http://www.google.com/>bar</a>baz]",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobarbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl>foo[bar]baz</a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">foo[bar]baz</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl>foo[barbaz</a>}",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">foo[barbaz</a>}",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<a href=otherurl>foobar]baz</a>",
    [["createlink","http://www.google.com/"]],
    "{<a href=\"http://www.google.com/\">foobar]baz</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<a href=otherurl>foobarbaz</a>}",
    [["createlink","http://www.google.com/"]],
    "{<a href=\"http://www.google.com/\">foobarbaz}</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl>[foobarbaz]</a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobarbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo<a href=otherurl>[bar]</a>baz",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[bar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[<a href=otherurl>bar</a>]baz",
    [["createlink","http://www.google.com/"]],
    "foo[<a href=\"http://www.google.com/\">bar</a>]baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo<a href=otherurl>[bar</a>baz]",
    [["createlink","http://www.google.com/"]],
    "foo<a href=\"http://www.google.com/\">[barbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["[foo<a href=otherurl>bar]</a>baz",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["[foo<a href=otherurl>bar</a>baz]",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\">[foobarbaz]</a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl><b>foo[bar]baz</b></a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\"><b>foo[bar]baz</b></a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl><b>foo[barbaz</b></a>}",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\"><b>foo[barbaz</b></a>}",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["{<a href=otherurl><b>foobar]baz</b></a>",
    [["createlink","http://www.google.com/"]],
    "{<a href=\"http://www.google.com/\"><b>foobar]baz</b></a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a href=otherurl><b>[foobarbaz]</b></a>",
    [["createlink","http://www.google.com/"]],
    "<a href=\"http://www.google.com/\"><b>[foobarbaz]</b></a>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a name=abc>foo[bar]baz</a>",
    [["createlink","http://www.google.com/"]],
    "<span name=\"abc\">foo<a href=\"http://www.google.com/\">[bar]</a>baz</span>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["<a name=abc><b>foo[bar]baz</b></a>",
    [["createlink","http://www.google.com/"]],
    "<span name=\"abc\"><b>foo<a href=\"http://www.google.com/\">[bar]</a>baz</b></span>",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
["foo[bar]baz",
    [["createlink",""]],
    "foo[bar]baz",
    [false],
    {"createlink":[false,false,"",false,false,""]}],
["foo[bar]baz",
    [["createlink","http://www.google.com/\u65E5\u672C\u8A9E\u30D1\u30B9"]],
    "foo<a href=\"http://www.google.com/\u65E5\u672C\u8A9E\u30D1\u30B9\">[bar]</a>baz",
    [true],
    {"createlink":[false,false,"",false,false,""]}],
]