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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp

Issue 1919813002: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved.
7 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
8 * Copyright (C) 2016 Samsung Electronics. All rights reserved.
7 * 9 *
8 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 11 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 12 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 13 * version 2 of the License, or (at your option) any later version.
12 * 14 *
13 * This library is distributed in the hope that it will be useful, 15 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details. 18 * Lesser General Public License for more details.
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 CSSPropertyListStylePosition, 125 CSSPropertyListStylePosition,
124 CSSPropertyListStyleType, 126 CSSPropertyListStyleType,
125 CSSPropertyMarginBottom, 127 CSSPropertyMarginBottom,
126 CSSPropertyMarginLeft, 128 CSSPropertyMarginLeft,
127 CSSPropertyMarginRight, 129 CSSPropertyMarginRight,
128 CSSPropertyMarginTop, 130 CSSPropertyMarginTop,
129 CSSPropertyMaxHeight, 131 CSSPropertyMaxHeight,
130 CSSPropertyMaxWidth, 132 CSSPropertyMaxWidth,
131 CSSPropertyMinHeight, 133 CSSPropertyMinHeight,
132 CSSPropertyMinWidth, 134 CSSPropertyMinWidth,
135 CSSPropertyNavDown,
136 CSSPropertyNavLeft,
137 CSSPropertyNavRight,
138 CSSPropertyNavUp,
133 CSSPropertyMixBlendMode, 139 CSSPropertyMixBlendMode,
134 CSSPropertyMotionOffset, 140 CSSPropertyMotionOffset,
135 CSSPropertyMotionPath, 141 CSSPropertyMotionPath,
136 CSSPropertyMotionRotation, 142 CSSPropertyMotionRotation,
137 CSSPropertyObjectFit, 143 CSSPropertyObjectFit,
138 CSSPropertyObjectPosition, 144 CSSPropertyObjectPosition,
139 CSSPropertyOpacity, 145 CSSPropertyOpacity,
140 CSSPropertyOrphans, 146 CSSPropertyOrphans,
141 CSSPropertyOutlineColor, 147 CSSPropertyOutlineColor,
142 CSSPropertyOutlineOffset, 148 CSSPropertyOutlineOffset,
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 709 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
704 } 710 }
705 711
706 DEFINE_TRACE(CSSComputedStyleDeclaration) 712 DEFINE_TRACE(CSSComputedStyleDeclaration)
707 { 713 {
708 visitor->trace(m_node); 714 visitor->trace(m_node);
709 CSSStyleDeclaration::trace(visitor); 715 CSSStyleDeclaration::trace(visitor);
710 } 716 }
711 717
712 } // namespace blink 718 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698