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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 2569113004: [css-align] Dedicated initial functions for {align-justify}-content
Patch Set: Preliminary approach. Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 m_shapeMargin(ComputedStyle::initialShapeMargin()), 86 m_shapeMargin(ComputedStyle::initialShapeMargin()),
87 m_textDecorationColor(StyleColor::currentColor()), 87 m_textDecorationColor(StyleColor::currentColor()),
88 m_visitedLinkTextDecorationColor(StyleColor::currentColor()), 88 m_visitedLinkTextDecorationColor(StyleColor::currentColor()),
89 m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor()), 89 m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor()),
90 m_visitedLinkOutlineColor(StyleColor::currentColor()), 90 m_visitedLinkOutlineColor(StyleColor::currentColor()),
91 m_visitedLinkBorderLeftColor(StyleColor::currentColor()), 91 m_visitedLinkBorderLeftColor(StyleColor::currentColor()),
92 m_visitedLinkBorderRightColor(StyleColor::currentColor()), 92 m_visitedLinkBorderRightColor(StyleColor::currentColor()),
93 m_visitedLinkBorderTopColor(StyleColor::currentColor()), 93 m_visitedLinkBorderTopColor(StyleColor::currentColor()),
94 m_visitedLinkBorderBottomColor(StyleColor::currentColor()), 94 m_visitedLinkBorderBottomColor(StyleColor::currentColor()),
95 m_variables(ComputedStyle::initialNonInheritedVariables()), 95 m_variables(ComputedStyle::initialNonInheritedVariables()),
96 m_alignContent(ComputedStyle::initialContentAlignment()), 96 m_alignContent(ComputedStyle::initialAlignContent()),
97 m_alignItems(ComputedStyle::initialDefaultAlignment()), 97 m_alignItems(ComputedStyle::initialDefaultAlignment()),
98 m_alignSelf(ComputedStyle::initialSelfAlignment()), 98 m_alignSelf(ComputedStyle::initialSelfAlignment()),
99 m_justifyContent(ComputedStyle::initialContentAlignment()), 99 m_justifyContent(ComputedStyle::initialJustifyContent()),
100 m_justifyItems(ComputedStyle::initialSelfAlignment()), 100 m_justifyItems(ComputedStyle::initialSelfAlignment()),
101 m_justifySelf(ComputedStyle::initialSelfAlignment()), 101 m_justifySelf(ComputedStyle::initialSelfAlignment()),
102 m_pageSizeType(PAGE_SIZE_AUTO), 102 m_pageSizeType(PAGE_SIZE_AUTO),
103 m_transformStyle3D(ComputedStyle::initialTransformStyle3D()), 103 m_transformStyle3D(ComputedStyle::initialTransformStyle3D()),
104 m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility()), 104 m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility()),
105 userDrag(ComputedStyle::initialUserDrag()), 105 userDrag(ComputedStyle::initialUserDrag()),
106 textOverflow(ComputedStyle::initialTextOverflow()), 106 textOverflow(ComputedStyle::initialTextOverflow()),
107 marginBeforeCollapse(MarginCollapseCollapse), 107 marginBeforeCollapse(MarginCollapseCollapse),
108 marginAfterCollapse(MarginCollapseCollapse), 108 marginAfterCollapse(MarginCollapseCollapse),
109 m_appearance(ComputedStyle::initialAppearance()), 109 m_appearance(ComputedStyle::initialAppearance()),
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 const StyleRareNonInheritedData& o) const { 347 const StyleRareNonInheritedData& o) const {
348 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); 348 return dataEquivalent(m_shapeOutside, o.m_shapeOutside);
349 } 349 }
350 350
351 bool StyleRareNonInheritedData::clipPathDataEquivalent( 351 bool StyleRareNonInheritedData::clipPathDataEquivalent(
352 const StyleRareNonInheritedData& o) const { 352 const StyleRareNonInheritedData& o) const {
353 return dataEquivalent(m_clipPath, o.m_clipPath); 353 return dataEquivalent(m_clipPath, o.m_clipPath);
354 } 354 }
355 355
356 } // namespace blink 356 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698