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

Side by Side Diff: Source/core/platform/graphics/GraphicsTypes.h

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed updated on text-underline-position for now (to be discussed & re-added later) Created 7 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) 2004, 2005, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006 Apple Computer, 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 17 matching lines...) Expand all
28 28
29 #include <wtf/Forward.h> 29 #include <wtf/Forward.h>
30 30
31 namespace WebCore { 31 namespace WebCore {
32 32
33 enum StrokeStyle { 33 enum StrokeStyle {
34 NoStroke, 34 NoStroke,
35 SolidStroke, 35 SolidStroke,
36 DottedStroke, 36 DottedStroke,
37 DashedStroke, 37 DashedStroke,
38 #if ENABLE(CSS3_TEXT)
39 DoubleStroke, 38 DoubleStroke,
40 WavyStroke, 39 WavyStroke,
41 #endif // CSS3_TEXT
42 }; 40 };
43 41
44 enum InterpolationQuality { 42 enum InterpolationQuality {
45 InterpolationDefault, 43 InterpolationDefault,
46 InterpolationNone, 44 InterpolationNone,
47 InterpolationLow, 45 InterpolationLow,
48 InterpolationMedium, 46 InterpolationMedium,
49 InterpolationHigh 47 InterpolationHigh
50 }; 48 };
51 49
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 117
120 String textAlignName(TextAlign); 118 String textAlignName(TextAlign);
121 bool parseTextAlign(const String&, TextAlign&); 119 bool parseTextAlign(const String&, TextAlign&);
122 120
123 String textBaselineName(TextBaseline); 121 String textBaselineName(TextBaseline);
124 bool parseTextBaseline(const String&, TextBaseline&); 122 bool parseTextBaseline(const String&, TextBaseline&);
125 123
126 } // namespace WebCore 124 } // namespace WebCore
127 125
128 #endif 126 #endif
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/GraphicsContext.cpp ('k') | Source/core/rendering/InlineTextBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698