| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google, Inc. | 2 * Copyright (C) 2013 Google, Inc. |
| 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 */ | 20 */ |
| 21 | 21 |
| 22 #ifndef StyleAdjuster_h | 22 #ifndef StyleAdjuster_h |
| 23 #define StyleAdjuster_h | 23 #define StyleAdjuster_h |
| 24 | 24 |
| 25 namespace WebCore { | 25 namespace WebCore { |
| 26 | 26 |
| 27 class CachedUAStyle; | 27 class CachedUAStyle; |
| 28 class Document; | |
| 29 class Element; | 28 class Element; |
| 30 class RenderStyle; | 29 class RenderStyle; |
| 31 | 30 |
| 32 // Certain CSS Properties/Values do not apply to certain elements | 31 // Certain CSS Properties/Values do not apply to certain elements |
| 33 // and the web expects that we expose "adjusted" values when | 32 // and the web expects that we expose "adjusted" values when |
| 34 // for those property/element pairs. | 33 // for those property/element pairs. |
| 35 class StyleAdjuster { | 34 class StyleAdjuster { |
| 36 public: | 35 public: |
| 37 StyleAdjuster(const CachedUAStyle& cachedUAStyle, bool useQuirksModeStyles) | 36 StyleAdjuster(const CachedUAStyle& cachedUAStyle, bool useQuirksModeStyles) |
| 38 : m_cachedUAStyle(cachedUAStyle) | 37 : m_cachedUAStyle(cachedUAStyle) |
| 39 , m_useQuirksModeStyles(useQuirksModeStyles) | 38 , m_useQuirksModeStyles(useQuirksModeStyles) |
| 40 { } | 39 { } |
| 41 | 40 |
| 42 void adjustRenderStyle(RenderStyle* styleToAdjust, RenderStyle* parentStyle,
Element*); | 41 void adjustRenderStyle(RenderStyle* styleToAdjust, RenderStyle* parentStyle,
Element*); |
| 43 | 42 |
| 44 private: | 43 private: |
| 45 void adjustGridItemPosition(RenderStyle*) const; | 44 void adjustGridItemPosition(RenderStyle*) const; |
| 46 | 45 |
| 47 const CachedUAStyle& m_cachedUAStyle; | 46 const CachedUAStyle& m_cachedUAStyle; |
| 48 bool m_useQuirksModeStyles; | 47 bool m_useQuirksModeStyles; |
| 49 }; | 48 }; |
| 50 | 49 |
| 51 } // namespace WebCore | 50 } // namespace WebCore |
| 52 | 51 |
| 53 #endif // StyleAdjuster_h | 52 #endif // StyleAdjuster_h |
| OLD | NEW |