| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |