OLD | NEW |
1 /** | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | |
3 * Copyright (C) 2004, 2006 Apple Computer, Inc. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | 2 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 3 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 4 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 5 * version 2 of the License, or (at your option) any later version. |
9 * | 6 * |
10 * This library is distributed in the hope that it will be useful, | 7 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 10 * Library General Public License for more details. |
14 * | 11 * |
15 * You should have received a copy of the GNU Library General Public License | 12 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 13 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 14 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 15 * Boston, MA 02110-1301, USA. |
| 16 * |
19 */ | 17 */ |
20 #include "config.h" | 18 |
21 #include "core/css/StyleSheet.h" | 19 #ifndef RegionOversetState_h |
| 20 #define RegionOversetState_h |
22 | 21 |
23 namespace WebCore { | 22 namespace WebCore { |
24 | 23 |
25 StyleSheet::~StyleSheet() | 24 enum RegionOversetState { |
26 { | 25 RegionUndefined, |
27 } | 26 RegionEmpty, |
| 27 RegionFit, |
| 28 RegionOverset |
| 29 }; |
28 | 30 |
29 } | 31 } // namespace WebCore |
| 32 |
| 33 #endif // RegionOversetState_h |
OLD | NEW |