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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html

Issue 1964773002: Render Unicode control characters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: w/Test changes Created 4 years, 6 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
Index: third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html b/third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html
index b6be14ce25db65ed96dc1da3f1e58f7aa662e80a..b18a45b881f7bd10fdac0d80fd790a990729e77a 100644
--- a/third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html
+++ b/third_party/WebKit/LayoutTests/fast/text/zero-width-characters.html
@@ -5,9 +5,6 @@ function test()
if (window.testRunner)
testRunner.dumpAsText();
var testString = "";
- for (var i = 0; i < 32; ++i) // >
- if (i != 9 && i != 10 && i != 13) // ;
- testString += String.fromCharCode(i);
testString += String.fromCharCode(0x200B);
testString += String.fromCharCode(0x200C);
testString += String.fromCharCode(0x200D);

Powered by Google App Engine
This is Rietveld 408576698