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

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

Issue 943463002: Initial implementation of font-size-adjust (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 * 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 CSSPropertyClip, 94 CSSPropertyClip,
95 CSSPropertyColor, 95 CSSPropertyColor,
96 CSSPropertyCursor, 96 CSSPropertyCursor,
97 CSSPropertyDirection, 97 CSSPropertyDirection,
98 CSSPropertyDisplay, 98 CSSPropertyDisplay,
99 CSSPropertyEmptyCells, 99 CSSPropertyEmptyCells,
100 CSSPropertyFloat, 100 CSSPropertyFloat,
101 CSSPropertyFontFamily, 101 CSSPropertyFontFamily,
102 CSSPropertyFontKerning, 102 CSSPropertyFontKerning,
103 CSSPropertyFontSize, 103 CSSPropertyFontSize,
104 CSSPropertyFontSizeAdjust,
104 CSSPropertyFontStretch, 105 CSSPropertyFontStretch,
105 CSSPropertyFontStyle, 106 CSSPropertyFontStyle,
106 CSSPropertyFontVariant, 107 CSSPropertyFontVariant,
107 CSSPropertyFontVariantLigatures, 108 CSSPropertyFontVariantLigatures,
108 CSSPropertyFontWeight, 109 CSSPropertyFontWeight,
109 CSSPropertyHeight, 110 CSSPropertyHeight,
110 CSSPropertyImageRendering, 111 CSSPropertyImageRendering,
111 CSSPropertyIsolation, 112 CSSPropertyIsolation,
112 CSSPropertyJustifyItems, 113 CSSPropertyJustifyItems,
113 CSSPropertyJustifySelf, 114 CSSPropertyJustifySelf,
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 687 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
687 } 688 }
688 689
689 void CSSComputedStyleDeclaration::trace(Visitor* visitor) 690 void CSSComputedStyleDeclaration::trace(Visitor* visitor)
690 { 691 {
691 visitor->trace(m_node); 692 visitor->trace(m_node);
692 CSSStyleDeclaration::trace(visitor); 693 CSSStyleDeclaration::trace(visitor);
693 } 694 }
694 695
695 } // namespace blink 696 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698