| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>Tests handling of unmatched surrogate pairs</title> |
| 5 <meta charset="utf8"> |
| 6 </head> |
| 7 <body> |
| 8 <div>Full codepoint, "🌎". Prints a globe glyph.</div> |
| 9 <div>First part of surrogate pair, "�". Should print replacement charact
er and rest of run.</div> |
| 10 <div>Second part of surrogate pair, "�". Should print replacement charac
ter and rest of run.</div> |
| 11 <br> |
| 12 <div>Spanning text nodes:</div> |
| 13 <div>- First part "��" second part.</div> |
| 14 <div>After element.normalize():</div> |
| 15 <div>- First part "🌎" second part.</div> |
| 16 </body> |
| 17 </html> |
| OLD | NEW |