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

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

Issue 1709963002: [css-align] New CSS Value 'normal' for Self Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Getting back the FullScreen fix, missed during the rebase. Created 4 years, 4 months 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/ComputedStyleConstants.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(MarginCollapseCollapse) 102 , marginBeforeCollapse(MarginCollapseCollapse)
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 { 355 {
356 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); 356 return dataEquivalent(m_shapeOutside, o.m_shapeOutside);
357 } 357 }
358 358
359 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const 359 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const
360 { 360 {
361 return dataEquivalent(m_clipPath, o.m_clipPath); 361 return dataEquivalent(m_clipPath, o.m_clipPath);
362 } 362 }
363 363
364 } // namespace blink 364 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyleConstants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698