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

Unified Diff: Source/platform/fonts/Character.cpp

Issue 1153173011: Force glyph overflow calculation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More rebaselines Created 5 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
« no previous file with comments | « Source/core/layout/line/BreakingContextInlineHeaders.h ('k') | Source/platform/fonts/Font.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/fonts/Character.cpp
diff --git a/Source/platform/fonts/Character.cpp b/Source/platform/fonts/Character.cpp
index 5e910374cf5a56cca477c63326c18fb535212887..bade6b5f8803fb16f81740d070e3b0984146082b 100644
--- a/Source/platform/fonts/Character.cpp
+++ b/Source/platform/fonts/Character.cpp
@@ -130,12 +130,6 @@ CodePath Character::characterRangeCodePath(const UChar* characters, unsigned len
if (c < 0x2E5)
continue;
- // U+1E00 through U+2000 characters with diacritics and stacked diacritics
- if (c >= 0x1E00 && c <= 0x2000) {
- result = SimpleWithGlyphOverflowPath;
- continue;
- }
-
// Surrogate pairs
if (c > 0xD7FF && c <= 0xDBFF) {
if (i == len - 1)
« no previous file with comments | « Source/core/layout/line/BreakingContextInlineHeaders.h ('k') | Source/platform/fonts/Font.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698