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

Unified Diff: LayoutTests/fast/text/unmatched-surrogate-pair.html

Issue 1285633003: Change handling of unmatched surrogate pairs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressing reviewer comments Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/text/unmatched-surrogate-pair-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/text/unmatched-surrogate-pair.html
diff --git a/LayoutTests/fast/text/unmatched-surrogate-pair.html b/LayoutTests/fast/text/unmatched-surrogate-pair.html
new file mode 100644
index 0000000000000000000000000000000000000000..77cdc9ee405d50c7fdd6954db57898c22bee8d75
--- /dev/null
+++ b/LayoutTests/fast/text/unmatched-surrogate-pair.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Tests handling of unmatched surrogate pairs</title>
+ <meta charset="utf16-be">
+ </head>
+ <body>
+ <script>
+ function appendLine(str)
+ {
+ var line = document.createElement('div');
+ line.appendChild(document.createTextNode(str));
+ document.body.appendChild(line);
+ }
+
+ var globe = '\u{1F30E}';
+ appendLine('Full codepoint, "\u{1F30E}". Prints a globe glyph.');
+ appendLine('First part of surrogate pair, "' + globe.substr(0, 1) +
+ '". Should print replacement character and rest of run.');
+ appendLine('Second part of surrogate pair, "' + globe.substr(1, 1) +
+ '". Should print replacement character and rest of run.');
+ document.body.appendChild(document.createElement('br'));
+
+ appendLine('Spanning text nodes:');
+ var nodeA = document.createTextNode('- First part "' +
+ globe.substr(0, 1));
+ var nodeB = document.createTextNode(globe.substr(1, 1) +
+ '" second part.');
+ var container = document.createElement('div');
+ container.appendChild(nodeA);
+ container.appendChild(nodeB);
+ document.body.appendChild(container);
+
+ appendLine('After element.normalize():');
+ var clone = container.cloneNode(true);
+ clone.normalize();
+ document.body.appendChild(clone);
+ </script>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/text/unmatched-surrogate-pair-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698