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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.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-complex-script.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.html b/third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.html
index abefec95cedf675e10bd6c7fb4c684d073d06edc..e7e70ec9f8e8e49bc903962a9963178b303c9586 100644
--- a/third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.html
+++ b/third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.html
@@ -22,12 +22,6 @@ function testChar(a, b, ch)
function testWithZeroWidthSpace(a, b) {
var failedCount = 0;
- for (var i = 1; i < 32; ++i)
- if (i != 9 && i != 10 && i != 13)
- failedCount += testChar(a, b, i);
-
- for (var i = 0x7F; i < 0xA0; ++i)
- failedCount += testChar(a, b, i);
failedCount += testChar(a, b, 0xAD);
// ZWJ (U+200C) and ZWNJ (U+200D) are excluded because they

Powered by Google App Engine
This is Rietveld 408576698