blob: 6df8912dc9376f55e9d2ec2ea8612c058ecdc623 [file] [log] [blame]
cdumez@apple.com36710c22017-01-14 00:46:12 +00001testText("<div>abc", "abc", "Simplest possible test");
2
3/**** white-space:normal ****/
4
5testText("<div> abc", "abc", "Leading whitespace removed");
6testText("<div>abc ", "abc", "Trailing whitespace removed");
7testText("<div>abc def", "abc def", "Internal whitespace compressed");
8testText("<div>abc\ndef", "abc def", "\\n converted to space");
9testText("<div>abc\rdef", "abc def", "\\r converted to space");
10testText("<div>abc\tdef", "abc def", "\\t converted to space");
11testText("<div>abc <br>def", "abc\ndef", "Trailing whitespace before hard line break removed");
12
13/**** <pre> ****/
14
15testText("<pre> abc", " abc", "Leading whitespace preserved");
16testText("<pre>abc ", "abc ", "Trailing whitespace preserved");
17testText("<pre>abc def", "abc def", "Internal whitespace preserved");
18testText("<pre>abc\ndef", "abc\ndef", "\\n preserved");
19testText("<pre>abc\rdef", "abc\ndef", "\\r converted to newline");
20testText("<pre>abc\tdef", "abc\tdef", "\\t preserved");
cdumez@apple.com9f925f82017-03-18 19:51:48 +000021testText("<div><pre>abc</pre><pre>def</pre>", "abc\ndef", "Two <pre> siblings");
cdumez@apple.com36710c22017-01-14 00:46:12 +000022
23/**** <div style="white-space:pre"> ****/
24
25testText("<div style='white-space:pre'> abc", " abc", "Leading whitespace preserved");
26testText("<div style='white-space:pre'>abc ", "abc ", "Trailing whitespace preserved");
27testText("<div style='white-space:pre'>abc def", "abc def", "Internal whitespace preserved");
28testText("<div style='white-space:pre'>abc\ndef", "abc\ndef", "\\n preserved");
29testText("<div style='white-space:pre'>abc\rdef", "abc\ndef", "\\r converted to newline");
30testText("<div style='white-space:pre'>abc\tdef", "abc\tdef", "\\t preserved");
31
32/**** <span style="white-space:pre"> ****/
33
34testText("<span style='white-space:pre'> abc", " abc", "Leading whitespace preserved");
35testText("<span style='white-space:pre'>abc ", "abc ", "Trailing whitespace preserved");
36testText("<span style='white-space:pre'>abc def", "abc def", "Internal whitespace preserved");
37testText("<span style='white-space:pre'>abc\ndef", "abc\ndef", "\\n preserved");
38testText("<span style='white-space:pre'>abc\rdef", "abc\ndef", "\\r converted to newline");
39testText("<span style='white-space:pre'>abc\tdef", "abc\tdef", "\\t preserved");
40
41/**** <div style="white-space:pre-line"> ****/
42
43testText("<div style='white-space:pre-line'> abc", "abc", "Leading whitespace removed");
44testText("<div style='white-space:pre-line'>abc ", "abc", "Trailing whitespace removed");
45testText("<div style='white-space:pre-line'>abc def", "abc def", "Internal whitespace collapsed");
46testText("<div style='white-space:pre-line'>abc\ndef", "abc\ndef", "\\n preserved");
47testText("<div style='white-space:pre-line'>abc\rdef", "abc\ndef", "\\r converted to newline");
48testText("<div style='white-space:pre-line'>abc\tdef", "abc def", "\\t converted to space");
49
50/**** Collapsing whitespace across element boundaries ****/
51
52testText("<div><span>abc </span> def", "abc def", "Whitespace collapses across element boundaries");
53testText("<div><span>abc </span><span></span> def", "abc def", "Whitespace collapses across element boundaries");
54testText("<div><span>abc </span><span style='white-space:pre'></span> def", "abc def", "Whitespace collapses across element boundaries");
55
56/**** Soft line breaks ****/
57
58testText("<div style='width:0'>abc def", "abc def", "Soft line breaks ignored");
59
60/**** first-line/first-letter ****/
61
62testText("<div class='first-line-uppercase' style='width:0'>abc def", "ABC def", "::first-line styles applied");
63testText("<div class='first-letter-uppercase' style='width:0'>abc def", "Abc def", "::first-letter styles applied");
64testText("<div class='first-letter-float' style='width:0'>abc def", "abc def", "::first-letter float ignored");
65
66/**** &nbsp; ****/
67
68testText("<div>&nbsp;", "\xA0", "&nbsp; preserved");
69
70/**** display:none ****/
71
72testText("<div style='display:none'>abc", "abc", "display:none container");
73testText("<div style='display:none'>abc def", "abc def", "No whitespace compression in display:none container");
74testText("<div style='display:none'> abc def ", " abc def ", "No removal of leading/trailing whitespace in display:none container");
75testText("<div>123<span style='display:none'>abc", "123", "display:none child not rendered");
76testText("<div style='display:none'><span id='target'>abc", "abc", "display:none container with non-display-none target child");
77testTextInSVG("<div id='target'>abc", "", "non-display-none child of svg");
78testTextInSVG("<div style='display:none' id='target'>abc", "abc", "display:none child of svg");
79testTextInSVG("<div style='display:none'><div id='target'>abc", "abc", "child of display:none child of svg");
80
81/**** display:contents ****/
82
83if (CSS.supports("display", "contents")) {
84 testText("<div style='display:contents'>abc", "abc", "display:contents container");
85 testText("<div><div style='display:contents'>abc", "abc", "display:contents container");
86 testText("<div>123<span style='display:contents'>abc", "123abc", "display:contents rendered");
87 testText("<div style='display:contents'> ", "", "display:contents not processed via textContent");
88 testText("<div><div style='display:contents'> ", "", "display:contents not processed via textContent");
89}
90
91/**** visibility:hidden ****/
92
93testText("<div style='visibility:hidden'>abc", "", "visibility:hidden container");
94testText("<div>123<span style='visibility:hidden'>abc", "123", "visibility:hidden child not rendered");
95testText("<div style='visibility:hidden'>123<span style='visibility:visible'>abc", "abc", "visibility:visible child rendered");
96
97/**** visibility:collapse ****/
98
99testText("<table><tbody style='visibility:collapse'><tr><td>abc", "", "visibility:collapse row-group");
100testText("<table><tr style='visibility:collapse'><td>abc", "", "visibility:collapse row");
101testText("<table><tr><td style='visibility:collapse'>abc", "", "visibility:collapse cell");
102testText("<table><tbody style='visibility:collapse'><tr><td style='visibility:visible'>abc", "abc",
103 "visibility:collapse row-group with visible cell");
104testText("<table><tr style='visibility:collapse'><td style='visibility:visible'>abc", "abc",
105 "visibility:collapse row with visible cell");
106testText("<div style='display:flex'><span style='visibility:collapse'>1</span><span>2</span></div>",
107 "2", "visibility:collapse honored on flex item");
108testText("<div style='display:grid'><span style='visibility:collapse'>1</span><span>2</span></div>",
109 "2", "visibility:collapse honored on grid item");
110
111/**** opacity:0 ****/
112
113testText("<div style='opacity:0'>abc", "abc", "opacity:0 container");
114testText("<div style='opacity:0'>abc def", "abc def", "Whitespace compression in opacity:0 container");
115testText("<div style='opacity:0'> abc def ", "abc def", "Remove leading/trailing whitespace in opacity:0 container");
116testText("<div>123<span style='opacity:0'>abc", "123abc", "opacity:0 child rendered");
117
118/**** generated content ****/
119
120testText("<div class='before'>", "", "Generated content not included");
121testText("<div><div class='before'>", "", "Generated content on child not included");
122
123/**** innerText on replaced elements ****/
124
125testText("<button>abc", "abc", "<button> contents preserved");
126testText("<fieldset>abc", "abc", "<fieldset> contents preserved");
127testText("<fieldset><legend>abc", "abc", "<fieldset> <legend> contents preserved");
128testText("<input type='text' value='abc'>", "", "<input> contents ignored");
129testText("<textarea>abc", "", "<textarea> contents ignored");
130testText("<iframe>abc", "", "<iframe> contents ignored");
131testText("<iframe><div id='target'>abc", "", "<iframe> contents ignored");
132testText("<iframe src='data:text/html,abc'>", "","<iframe> subdocument ignored");
133testText("<audio style='display:block'>abc", "", "<audio> contents ignored");
134testText("<audio style='display:block'><source id='target' class='poke' style='display:block'>", "", "<audio> contents ignored");
135testText("<audio style='display:block'><source id='target' class='poke' style='display:none'>", "abc", "<audio> contents ok if display:none");
136testText("<video>abc", "", "<video> contents ignored");
137testText("<video style='display:block'><source id='target' class='poke' style='display:block'>", "", "<video> contents ignored");
138testText("<video style='display:block'><source id='target' class='poke' style='display:none'>", "abc", "<video> contents ok if display:none");
139testText("<canvas>abc", "", "<canvas> contents ignored");
140testText("<canvas><div id='target'>abc", "", "<canvas><div id='target'> contents ignored");
141testText("<img alt='abc'>", "", "<img> alt text ignored");
142testText("<img src='about:blank' class='poke'>", "", "<img> contents ignored");
143
144/**** <select>, <optgroup> & <option> ****/
145
146testText("<select size='1'><option>abc</option><option>def", "abc\ndef", "<select size='1'> contents of options preserved");
147testText("<select size='2'><option>abc</option><option>def", "abc\ndef", "<select size='2'> contents of options preserved");
148testText("<select size='1'><option id='target'>abc</option><option>def", "abc", "<select size='1'> contents of target option preserved");
149testText("<select size='2'><option id='target'>abc</option><option>def", "abc", "<select size='2'> contents of target option preserved");
150testText("<div>a<select></select>bc", "abc", "empty <select>");
151testText("<div>a<select><optgroup></select>bc", "a\nbc", "empty <optgroup> in <select>");
152testText("<div>a<select><option></select>bc", "a\nbc", "empty <option> in <select>");
153testText("<select class='poke'></select>", "", "<select> containing text node child");
154testText("<select><optgroup class='poke-optgroup'></select>", "", "<optgroup> containing <optgroup>");
155testText("<select><optgroup><option>abc</select>", "abc", "<optgroup> containing <option>");
156testText("<select><option class='poke-div'>123</select>", "123\nabc", "<div> in <option>");
157testText("<div>a<optgroup></optgroup>bc", "a\nbc", "empty <optgroup> in <div>");
158testText("<div>a<optgroup>123</optgroup>bc", "a\nbc", "<optgroup> in <div>");
159testText("<div>a<option></option>bc", "a\nbc", "empty <option> in <div>");
160testText("<div>a<option>123</option>bc", "a\n123\nbc", "<option> in <div>");
161
162/**** innerText on replaced element children ****/
163
164testText("<div><button>abc", "abc", "<button> contents preserved");
165testText("<div><fieldset>abc", "abc", "<fieldset> contents preserved");
166testText("<div><fieldset><legend>abc", "abc", "<fieldset> <legend> contents preserved");
167testText("<div><input type='text' value='abc'>", "", "<input> contents ignored");
168testText("<div><textarea>abc", "", "<textarea> contents ignored");
169testText("<div><select size='1'><option>abc</option><option>def", "abc\ndef", "<select size='1'> contents of options preserved");
170testText("<div><select size='2'><option>abc</option><option>def", "abc\ndef", "<select size='2'> contents of options preserved");
171testText("<div><iframe>abc", "", "<iframe> contents ignored");
172testText("<div><iframe src='data:text/html,abc'>", ""," <iframe> subdocument ignored");
173testText("<div><audio>abc", "", "<audio> contents ignored");
174testText("<div><video>abc", "", "<video> contents ignored");
175testText("<div><canvas>abc", "", "<canvas> contents ignored");
176testText("<div><img alt='abc'>", "", "<img> alt text ignored");
177
178/**** Lines around blocks ****/
179
180testText("<div>123<div>abc</div>def", "123\nabc\ndef", "Newline at block boundary");
181testText("<div>123<span style='display:block'>abc</span>def", "123\nabc\ndef", "Newline at display:block boundary");
182testText("<div>abc<div></div>def", "abc\ndef", "Empty block induces single line break");
183testText("<div>abc<div></div><div></div>def", "abc\ndef", "Consecutive empty blocks ignored");
184testText("<div><p>abc", "abc", "No blank lines around <p> alone");
185testText("<div><p>abc</p> ", "abc", "No blank lines around <p> followed by only collapsible whitespace");
186testText("<div> <p>abc</p>", "abc", "No blank lines around <p> preceded by only collapsible whitespace");
187testText("<div><p>abc<p>def", "abc\n\ndef", "Blank line between consecutive <p>s");
188testText("<div><p>abc</p> <p>def", "abc\n\ndef", "Blank line between consecutive <p>s separated only by collapsible whitespace");
189testText("<div><p>abc</p><div></div><p>def", "abc\n\ndef", "Blank line between consecutive <p>s separated only by empty block");
190testText("<div><p>abc</p><div>123</div><p>def", "abc\n\n123\n\ndef", "Blank lines between <p>s separated by non-empty block");
191testText("<div>abc<div><p>123</p></div>def", "abc\n\n123\n\ndef", "Blank lines around a <p> in its own block");
192testText("<div>abc<p>def", "abc\n\ndef", "Blank line before <p>");
193testText("<div><p>abc</p>def", "abc\n\ndef", "Blank line after <p>");
194testText("<div><p>abc<p></p><p></p><p>def", "abc\n\ndef", "One blank line between <p>s, ignoring empty <p>s");
195testText("<div style='visibility:hidden'><p><span style='visibility:visible'>abc</span></p>\n<div style='visibility:visible'>def</div>",
196 "abc\ndef", "Invisible <p> doesn't induce extra line breaks");
197testText("<div>abc<div style='margin:2em'>def", "abc\ndef", "No blank lines around <div> with margin");
198testText("<div>123<span style='display:inline-block'>abc</span>def", "123abcdef", "No newlines at display:inline-block boundary");
199testText("<div>123<span style='display:inline-block'> abc </span>def", "123abcdef", "Leading/trailing space removal at display:inline-block boundary");
commit-queue@webkit.org391b72172017-09-21 01:34:12 +0000200testText("<div>123<p style='margin:0px'>abc</p>def", "123\n\nabc\n\ndef", "Blank lines around <p> even without margin");
201testText("<div>123<h1>abc</h1>def", "123\nabc\ndef", "No blank lines around <h1>");
202testText("<div>123<h2>abc</h2>def", "123\nabc\ndef", "No blank lines around <h2>");
203testText("<div>123<h3>abc</h3>def", "123\nabc\ndef", "No blank lines around <h3>");
204testText("<div>123<h4>abc</h4>def", "123\nabc\ndef", "No blank lines around <h4>");
205testText("<div>123<h5>abc</h5>def", "123\nabc\ndef", "No blank lines around <h5>");
206testText("<div>123<h6>abc</h6>def", "123\nabc\ndef", "No blank lines around <h6>");
cdumez@apple.com36710c22017-01-14 00:46:12 +0000207
208/**** Spans ****/
209
210testText("<div>123<span>abc</span>def", "123abcdef", "<span> boundaries are irrelevant");
211testText("<div>123 <span>abc</span> def", "123 abc def", "<span> boundaries are irrelevant");
212testText("<div style='width:0'>123 <span>abc</span> def", "123 abc def", "<span> boundaries are irrelevant");
213testText("<div>123<em>abc</em>def", "123abcdef", "<em> gets no special treatment");
214testText("<div>123<b>abc</b>def", "123abcdef", "<b> gets no special treatment");
215testText("<div>123<i>abc</i>def", "123abcdef", "<i> gets no special treatment");
216testText("<div>123<strong>abc</strong>def", "123abcdef", "<strong> gets no special treatment");
217testText("<div>123<tt>abc</tt>def", "123abcdef", "<tt> gets no special treatment");
218testText("<div>123<code>abc</code>def", "123abcdef", "<code> gets no special treatment");
219
220/**** Soft hyphen ****/
221
222testText("<div>abc&shy;def", "abc\xADdef", "soft hyphen preserved");
223testText("<div style='width:0'>abc&shy;def", "abc\xADdef", "soft hyphen preserved");
224
225/**** Tables ****/
226
227testText("<div><table style='white-space:pre'> <td>abc</td> </table>", "abc", "Ignoring non-rendered table whitespace");
228testText("<div><table><tr><td>abc<td>def</table>", "abc\tdef", "Tab-separated table cells");
229testText("<div><table><tr><td>abc<td><td>def</table>", "abc\t\tdef", "Tab-separated table cells including empty cells");
230testText("<div><table><tr><td>abc<td><td></table>", "abc\t\t", "Tab-separated table cells including trailing empty cells");
231testText("<div><table><tr><td>abc<tr><td>def</table>", "abc\ndef", "Newline-separated table rows");
232testText("<div>abc<table><td>def</table>ghi", "abc\ndef\nghi", "Newlines around table");
233testText("<div><table style='border-collapse:collapse'><tr><td>abc<td>def</table>", "abc\tdef",
234 "Tab-separated table cells in a border-collapse table");
235testText("<div><table><tfoot>x</tfoot><tbody>y</tbody></table>", "xy", "tfoot not reordered");
236testText("<table><tfoot><tr><td>footer</tfoot><thead><tr><td style='visibility:collapse'>thead</thead><tbody><tr><td>tbody</tbody></table>",
237 "footer\n\ntbody", "");
238
239/**** Table captions ****/
240
241testText("<div><table><tr><td>abc<caption>def</caption></table>", "abc\ndef", "Newline between cells and caption");
242
243/**** display:table ****/
244
245testText("<div><div class='table'><span class='cell'>abc</span>\n<span class='cell'>def</span></div>",
246 "abc\tdef", "Tab-separated table cells");
247testText("<div><div class='table'><span class='row'><span class='cell'>abc</span></span>\n<span class='row'><span class='cell'>def</span></span></div>",
248 "abc\ndef", "Newline-separated table rows");
249testText("<div>abc<div class='table'><span class='cell'>def</span></div>ghi", "abc\ndef\nghi", "Newlines around table");
250
251/**** display:inline-table ****/
252
253testText("<div><div class='itable'><span class='cell'>abc</span>\n<span class='cell'>def</span></div>", "abc\tdef", "Tab-separated table cells");
254testText("<div><div class='itable'><span class='row'><span class='cell'>abc</span></span>\n<span class='row'><span class='cell'>def</span></span></div>",
255 "abc\ndef", "Newline-separated table rows");
256testText("<div>abc<div class='itable'><span class='cell'>def</span></div>ghi", "abcdefghi", "No newlines around inline-table");
257testText("<div>abc<div class='itable'><span class='row'><span class='cell'>def</span></span>\n<span class='row'><span class='cell'>123</span></span></div>ghi",
258 "abcdef\n123ghi", "Single newline in two-row inline-table");
259
260/**** Lists ****/
261
262testText("<div><ol><li>abc", "abc", "<ol> list items get no special treatment");
263testText("<div><ul><li>abc", "abc", "<ul> list items get no special treatment");
264
265/**** Misc elements ****/
266
267testText("<div><script style='display:block'>abc", "abc", "display:block <script> is rendered");
268testText("<div><style style='display:block'>abc", "abc", "display:block <style> is rendered");
269testText("<div><noscript style='display:block'>abc", "", "display:block <noscript> is not rendered (it's not parsed!)");
270testText("<div><template style='display:block'>abc", "",
271 "display:block <template> contents are not rendered (the contents are in a different document)");
272testText("<div>abc<br>def", "abc\ndef", "<br> induces line break");
273testText("<div>abc<br>", "abc\n", "<br> induces line break even at end of block");
274testText("<div><br class='poke'>", "\n", "<br> content ignored");
275testText("<div>abc<hr>def", "abc\ndef", "<hr> induces line break");
276testText("<div>abc<hr><hr>def", "abc\ndef", "<hr><hr> induces just one line break");
277testText("<div>abc<hr><hr><hr>def", "abc\ndef", "<hr><hr><hr> induces just one line break");
278testText("<div><hr class='poke'>", "abc", "<hr> content rendered");
279testText("<div>abc<!--comment-->def", "abcdef", "comment ignored");
280
281/**** text-transform ****/
282
283testText("<div><div style='text-transform:uppercase'>abc", "ABC", "text-transform is applied");
284testText("<div><div style='text-transform:uppercase'>Ma\xDF", "MASS", "text-transform handles es-zet");
285testText("<div><div lang='tr' style='text-transform:uppercase'>i \u0131", "\u0130 I", "text-transform handles Turkish casing");
286
287/**** block-in-inline ****/
288
289testText("<div>abc<span>123<div>456</div>789</span>def", "abc123\n456\n789def", "block-in-inline doesn't add unnecessary newlines");
290
291/**** floats ****/
292
293testText("<div>abc<div style='float:left'>123</div>def", "abc\n123\ndef", "floats induce a block boundary");
294testText("<div>abc<span style='float:left'>123</span>def", "abc\n123\ndef", "floats induce a block boundary");
295
296/**** position ****/
297
298testText("<div>abc<div style='position:absolute'>123</div>def", "abc\n123\ndef", "position:absolute induces a block boundary");
299testText("<div>abc<span style='position:absolute'>123</span>def", "abc\n123\ndef", "position:absolute induces a block boundary");
300testText("<div>abc<div style='position:relative'>123</div>def", "abc\n123\ndef", "position:relative has no effect");
301testText("<div>abc<span style='position:relative'>123</span>def", "abc123def", "position:relative has no effect");
302
303/**** text-overflow:ellipsis ****/
304
305testText("<div style='overflow:hidden'>abc", "abc", "overflow:hidden ignored");
306// XXX Chrome skips content with width:0 or height:0 and overflow:hidden;
307// should we spec that?
308testText("<div style='width:0; overflow:hidden'>abc", "abc", "overflow:hidden ignored even with zero width");
309testText("<div style='height:0; overflow:hidden'>abc", "abc", "overflow:hidden ignored even with zero height");
310testText("<div style='width:0; overflow:hidden; text-overflow:ellipsis'>abc", "abc", "text-overflow:ellipsis ignored");
311
312/**** Support on non-HTML elements ****/
313
314testText("<svg>abc", undefined, "innerText not supported on SVG elements");
315testText("<math>abc", undefined, "innerText not supported on MathML elements");
316
317/**** Ruby ****/
318
319testText("<div><ruby>abc<rt>def</rt></ruby>", "abcdef", "<rt> and no <rp>");
320testText("<div><ruby>abc<rp>(</rp><rt>def</rt><rp>)</rp></ruby>", "abcdef", "<rp>");
321testText("<div><rp>abc</rp>", "", "Lone <rp>");
322testText("<div><rp style='visibility:hidden'>abc</rp>", "", "visibility:hidden <rp>");
323testText("<div><rp style='display:block'>abc</rp>def", "abc\ndef", "display:block <rp>");
324testText("<div><rp style='display:block'> abc </rp>def", "abc\ndef", "display:block <rp> with whitespace");
325testText("<div><select class='poke-rp'></select>", "", "<rp> in a <select>");
326
327/**** Shadow DOM ****/
328
329if ("createShadowRoot" in document.body) {
330 testText("<div class='shadow'>", "", "Shadow DOM contents ignored");
331 testText("<div><div class='shadow'>", "", "Shadow DOM contents ignored");
332}
333
334/**** Flexbox ****/
335
336if (CSS.supports('display', 'flex')) {
337 testText("<div style='display:flex'><div style='order:1'>1</div><div>2</div></div>",
338 "1\n2", "CSS 'order' property ignored");
339 testText("<div style='display:flex'><span>1</span><span>2</span></div>",
340 "1\n2", "Flex items blockified");
341}
342
343/**** Grid ****/
344
345if (CSS.supports('display', 'grid')) {
346 testText("<div style='display:grid'><div style='order:1'>1</div><div>2</div></div>",
347 "1\n2", "CSS 'order' property ignored");
348 testText("<div style='display:grid'><span>1</span><span>2</span></div>",
349 "1\n2", "Grid items blockified");
350}