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

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: 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.txt » ('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..ab6a832487b59b34b779785bceab7986af688b21
--- /dev/null
+++ b/LayoutTests/fast/text/unmatched-surrogate-pair.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Tests handling of unmatched surrogate pairs</title>
+ <meta charset="utf16-be">
+ </head>
+ <body>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+
+ 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 globle glyph.');
bsittler 2015/08/11 18:11:00 tiny typo: s/globle/globe
+ 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.');
+ </script>
+ </body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/text/unmatched-surrogate-pair-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698