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

Side by Side Diff: Source/platform/fonts/Character.cpp

Issue 459153002: Revert r174133, r178901 and r178981 to fix Mac (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use NeedsRebaseline Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « LayoutTests/platform/linux/fast/text/bidi-ignorable-unicode-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // U+1780 through U+18AF Tagalog, Hanunoo, Buhid, Taghanwa,Khmer, Mongol ian 94 // U+1780 through U+18AF Tagalog, Hanunoo, Buhid, Taghanwa,Khmer, Mongol ian
95 0x1700, 0x18AF, 95 0x1700, 0x18AF,
96 // U+1900 through U+194F Limbu (Unicode 4.0) 96 // U+1900 through U+194F Limbu (Unicode 4.0)
97 0x1900, 0x194F, 97 0x1900, 0x194F,
98 // U+1980 through U+19DF New Tai Lue 98 // U+1980 through U+19DF New Tai Lue
99 0x1980, 0x19DF, 99 0x1980, 0x19DF,
100 // U+1A00 through U+1CFF Buginese, Tai Tham, Balinese, Batak, Lepcha, Ve dic 100 // U+1A00 through U+1CFF Buginese, Tai Tham, Balinese, Batak, Lepcha, Ve dic
101 0x1A00, 0x1CFF, 101 0x1A00, 0x1CFF,
102 // U+1DC0 through U+1DFF Comining diacritical mark supplement 102 // U+1DC0 through U+1DFF Comining diacritical mark supplement
103 0x1DC0, 0x1DFF, 103 0x1DC0, 0x1DFF,
104 // Nominal Digit Shape
105 0x2060, 0x206F,
106 // U+20D0 through U+20FF Combining marks for symbols 104 // U+20D0 through U+20FF Combining marks for symbols
107 0x20D0, 0x20FF, 105 0x20D0, 0x20FF,
108 // U+2CEF through U+2CF1 Combining marks for Coptic 106 // U+2CEF through U+2CF1 Combining marks for Coptic
109 0x2CEF, 0x2CF1, 107 0x2CEF, 0x2CF1,
110 // U+302A through U+302F Ideographic and Hangul Tone marks 108 // U+302A through U+302F Ideographic and Hangul Tone marks
111 0x302A, 0x302F, 109 0x302A, 0x302F,
112 // U+A67C through U+A67D Combining marks for old Cyrillic 110 // U+A67C through U+A67D Combining marks for old Cyrillic
113 0xA67C, 0xA67D, 111 0xA67C, 0xA67D,
114 // U+A6F0 through U+A6F1 Combining mark for Bamum 112 // U+A6F0 through U+A6F1 Combining mark for Bamum
115 0xA6F0, 0xA6F1, 113 0xA6F0, 0xA6F1,
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 { 366 {
369 return normalizeSpacesInternal(characters, length); 367 return normalizeSpacesInternal(characters, length);
370 } 368 }
371 369
372 String Character::normalizeSpaces(const UChar* characters, unsigned length) 370 String Character::normalizeSpaces(const UChar* characters, unsigned length)
373 { 371 {
374 return normalizeSpacesInternal(characters, length); 372 return normalizeSpacesInternal(characters, length);
375 } 373 }
376 374
377 } 375 }
OLDNEW
« no previous file with comments | « LayoutTests/platform/linux/fast/text/bidi-ignorable-unicode-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698