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

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

Issue 2145823002: Implement the overflow-anchor CSS property as an opt-out for ScrollAnchoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put opt-out behind RuntimeEnabledFeature and update tests Created 4 years, 5 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 | « no previous file | third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h » ('j') | 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) 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 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 CSSPropertyMotionPath, 139 CSSPropertyMotionPath,
140 CSSPropertyMotionRotation, 140 CSSPropertyMotionRotation,
141 CSSPropertyObjectFit, 141 CSSPropertyObjectFit,
142 CSSPropertyObjectPosition, 142 CSSPropertyObjectPosition,
143 CSSPropertyOpacity, 143 CSSPropertyOpacity,
144 CSSPropertyOrphans, 144 CSSPropertyOrphans,
145 CSSPropertyOutlineColor, 145 CSSPropertyOutlineColor,
146 CSSPropertyOutlineOffset, 146 CSSPropertyOutlineOffset,
147 CSSPropertyOutlineStyle, 147 CSSPropertyOutlineStyle,
148 CSSPropertyOutlineWidth, 148 CSSPropertyOutlineWidth,
149 CSSPropertyOverflowAnchor,
149 CSSPropertyOverflowWrap, 150 CSSPropertyOverflowWrap,
150 CSSPropertyOverflowX, 151 CSSPropertyOverflowX,
151 CSSPropertyOverflowY, 152 CSSPropertyOverflowY,
152 CSSPropertyPaddingBottom, 153 CSSPropertyPaddingBottom,
153 CSSPropertyPaddingLeft, 154 CSSPropertyPaddingLeft,
154 CSSPropertyPaddingRight, 155 CSSPropertyPaddingRight,
155 CSSPropertyPaddingTop, 156 CSSPropertyPaddingTop,
156 CSSPropertyPointerEvents, 157 CSSPropertyPointerEvents,
157 CSSPropertyPosition, 158 CSSPropertyPosition,
158 CSSPropertyResize, 159 CSSPropertyResize,
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 700 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
700 } 701 }
701 702
702 DEFINE_TRACE(CSSComputedStyleDeclaration) 703 DEFINE_TRACE(CSSComputedStyleDeclaration)
703 { 704 {
704 visitor->trace(m_node); 705 visitor->trace(m_node);
705 CSSStyleDeclaration::trace(visitor); 706 CSSStyleDeclaration::trace(visitor);
706 } 707 }
707 708
708 } // namespace blink 709 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698