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

Side by Side Diff: third_party/WebKit/Source/wtf/text/CharacterNames.h

Issue 1964773002: Render Unicode control characters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2009, 2010 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 const UChar leftDoubleQuotationMarkCharacter = 0x201C; 80 const UChar leftDoubleQuotationMarkCharacter = 0x201C;
81 const UChar leftSingleQuotationMarkCharacter = 0x2018; 81 const UChar leftSingleQuotationMarkCharacter = 0x2018;
82 const UChar32 leftSpeechBubbleCharacter = 0x1F5E8; 82 const UChar32 leftSpeechBubbleCharacter = 0x1F5E8;
83 const UChar leftToRightEmbedCharacter = 0x202A; 83 const UChar leftToRightEmbedCharacter = 0x202A;
84 const UChar leftToRightIsolateCharacter = 0x2066; 84 const UChar leftToRightIsolateCharacter = 0x2066;
85 const UChar leftToRightMarkCharacter = 0x200E; 85 const UChar leftToRightMarkCharacter = 0x200E;
86 const UChar leftToRightOverrideCharacter = 0x202D; 86 const UChar leftToRightOverrideCharacter = 0x202D;
87 const UChar lineSeparator = 0x2028; 87 const UChar lineSeparator = 0x2028;
88 const UChar minusSignCharacter = 0x2212; 88 const UChar minusSignCharacter = 0x2212;
89 const UChar newlineCharacter = 0x000A; 89 const UChar newlineCharacter = 0x000A;
90 const UChar formFeedCharacter = 0x000C;
91 const UChar carriageReturnCharacter = 0x000D;
90 const UChar nationalDigitShapesCharacter = 0x206E; 92 const UChar nationalDigitShapesCharacter = 0x206E;
91 const UChar nominalDigitShapesCharacter = 0x206F; 93 const UChar nominalDigitShapesCharacter = 0x206F;
92 const UChar noBreakSpaceCharacter = 0x00A0; 94 const UChar noBreakSpaceCharacter = 0x00A0;
93 const UChar objectReplacementCharacter = 0xFFFC; 95 const UChar objectReplacementCharacter = 0xFFFC;
94 const UChar paragraphSeparator = 0x2029; 96 const UChar paragraphSeparator = 0x2029;
95 const UChar popDirectionalFormattingCharacter = 0x202C; 97 const UChar popDirectionalFormattingCharacter = 0x202C;
96 const UChar popDirectionalIsolateCharacter = 0x2069; 98 const UChar popDirectionalIsolateCharacter = 0x2069;
97 const UChar replacementCharacter = 0xFFFD; 99 const UChar replacementCharacter = 0xFFFD;
98 const UChar rightDoubleQuotationMarkCharacter = 0x201D; 100 const UChar rightDoubleQuotationMarkCharacter = 0x201D;
99 const UChar rightSingleQuotationMarkCharacter = 0x2019; 101 const UChar rightSingleQuotationMarkCharacter = 0x2019;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 using WTF::Unicode::whiteSesameDotCharacter; 201 using WTF::Unicode::whiteSesameDotCharacter;
200 using WTF::Unicode::whiteUpPointingTriangleCharacter; 202 using WTF::Unicode::whiteUpPointingTriangleCharacter;
201 using WTF::Unicode::yenSignCharacter; 203 using WTF::Unicode::yenSignCharacter;
202 using WTF::Unicode::zeroWidthJoinerCharacter; 204 using WTF::Unicode::zeroWidthJoinerCharacter;
203 using WTF::Unicode::zeroWidthNonJoinerCharacter; 205 using WTF::Unicode::zeroWidthNonJoinerCharacter;
204 using WTF::Unicode::zeroWidthSpaceCharacter; 206 using WTF::Unicode::zeroWidthSpaceCharacter;
205 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; 207 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter;
206 using WTF::Unicode::kMaxCodepoint; 208 using WTF::Unicode::kMaxCodepoint;
207 209
208 #endif // CharacterNames_h 210 #endif // CharacterNames_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698