OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 , m_shapeMargin(ComputedStyle::initialShapeMargin()) | 82 , m_shapeMargin(ComputedStyle::initialShapeMargin()) |
83 , m_textDecorationColor(StyleColor::currentColor()) | 83 , m_textDecorationColor(StyleColor::currentColor()) |
84 , m_visitedLinkTextDecorationColor(StyleColor::currentColor()) | 84 , m_visitedLinkTextDecorationColor(StyleColor::currentColor()) |
85 , m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor()) | 85 , m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor()) |
86 , m_visitedLinkOutlineColor(StyleColor::currentColor()) | 86 , m_visitedLinkOutlineColor(StyleColor::currentColor()) |
87 , m_visitedLinkBorderLeftColor(StyleColor::currentColor()) | 87 , m_visitedLinkBorderLeftColor(StyleColor::currentColor()) |
88 , m_visitedLinkBorderRightColor(StyleColor::currentColor()) | 88 , m_visitedLinkBorderRightColor(StyleColor::currentColor()) |
89 , m_visitedLinkBorderTopColor(StyleColor::currentColor()) | 89 , m_visitedLinkBorderTopColor(StyleColor::currentColor()) |
90 , m_visitedLinkBorderBottomColor(StyleColor::currentColor()) | 90 , m_visitedLinkBorderBottomColor(StyleColor::currentColor()) |
91 , m_alignContent(ComputedStyle::initialContentAlignment()) | 91 , m_alignContent(ComputedStyle::initialContentAlignment()) |
92 , m_alignItems(ComputedStyle::initialSelfAlignment()) | 92 , m_alignItems(ComputedStyle::initialDefaultAlignment()) |
93 , m_alignSelf(ComputedStyle::initialSelfAlignment()) | 93 , m_alignSelf(ComputedStyle::initialSelfAlignment()) |
94 , m_justifyContent(ComputedStyle::initialContentAlignment()) | 94 , m_justifyContent(ComputedStyle::initialContentAlignment()) |
95 , m_justifyItems(ComputedStyle::initialSelfAlignment()) | 95 , m_justifyItems(ComputedStyle::initialSelfAlignment()) |
96 , m_justifySelf(ComputedStyle::initialSelfAlignment()) | 96 , m_justifySelf(ComputedStyle::initialSelfAlignment()) |
97 , m_pageSizeType(PAGE_SIZE_AUTO) | 97 , m_pageSizeType(PAGE_SIZE_AUTO) |
98 , m_transformStyle3D(ComputedStyle::initialTransformStyle3D()) | 98 , m_transformStyle3D(ComputedStyle::initialTransformStyle3D()) |
99 , m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility()) | 99 , m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility()) |
100 , userDrag(ComputedStyle::initialUserDrag()) | 100 , userDrag(ComputedStyle::initialUserDrag()) |
101 , textOverflow(ComputedStyle::initialTextOverflow()) | 101 , textOverflow(ComputedStyle::initialTextOverflow()) |
102 , marginBeforeCollapse(MCOLLAPSE) | 102 , marginBeforeCollapse(MCOLLAPSE) |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 { | 361 { |
362 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); | 362 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); |
363 } | 363 } |
364 | 364 |
365 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit
edData& o) const | 365 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit
edData& o) const |
366 { | 366 { |
367 return dataEquivalent(m_clipPath, o.m_clipPath); | 367 return dataEquivalent(m_clipPath, o.m_clipPath); |
368 } | 368 } |
369 | 369 |
370 } // namespace blink | 370 } // namespace blink |
OLD | NEW |