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