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

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

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 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 | Annotate | Revision Log
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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 CSSPropertyPaddingRight, 147 CSSPropertyPaddingRight,
148 CSSPropertyPaddingTop, 148 CSSPropertyPaddingTop,
149 CSSPropertyPageBreakAfter, 149 CSSPropertyPageBreakAfter,
150 CSSPropertyPageBreakBefore, 150 CSSPropertyPageBreakBefore,
151 CSSPropertyPageBreakInside, 151 CSSPropertyPageBreakInside,
152 CSSPropertyPointerEvents, 152 CSSPropertyPointerEvents,
153 CSSPropertyPosition, 153 CSSPropertyPosition,
154 CSSPropertyResize, 154 CSSPropertyResize,
155 CSSPropertyRight, 155 CSSPropertyRight,
156 CSSPropertyScrollBehavior, 156 CSSPropertyScrollBehavior,
157 CSSPropertyScrollBlocksOn,
158 CSSPropertySpeak, 157 CSSPropertySpeak,
159 CSSPropertyTableLayout, 158 CSSPropertyTableLayout,
160 CSSPropertyTabSize, 159 CSSPropertyTabSize,
161 CSSPropertyTextAlign, 160 CSSPropertyTextAlign,
162 CSSPropertyTextAlignLast, 161 CSSPropertyTextAlignLast,
163 CSSPropertyTextDecoration, 162 CSSPropertyTextDecoration,
164 CSSPropertyTextDecorationLine, 163 CSSPropertyTextDecorationLine,
165 CSSPropertyTextDecorationStyle, 164 CSSPropertyTextDecorationStyle,
166 CSSPropertyTextDecorationColor, 165 CSSPropertyTextDecorationColor,
167 CSSPropertyTextJustify, 166 CSSPropertyTextJustify,
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 692 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
694 } 693 }
695 694
696 DEFINE_TRACE(CSSComputedStyleDeclaration) 695 DEFINE_TRACE(CSSComputedStyleDeclaration)
697 { 696 {
698 visitor->trace(m_node); 697 visitor->trace(m_node);
699 CSSStyleDeclaration::trace(visitor); 698 CSSStyleDeclaration::trace(visitor);
700 } 699 }
701 700
702 } // namespace blink 701 } // namespace blink
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/css-properties-as-js-properties-expected.txt ('k') | Source/core/css/CSSPrimitiveValueMappings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698