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

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: Add some tests which need a rebaseline to TestExpectation Created 5 years, 9 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only."); 691 exceptionState.throwDOMException(NoModificationAllowedError, "These styles a re computed, and therefore the '" + getPropertyNameString(id) + "' property is r ead-only.");
691 } 692 }
692 693
693 DEFINE_TRACE(CSSComputedStyleDeclaration) 694 DEFINE_TRACE(CSSComputedStyleDeclaration)
694 { 695 {
695 visitor->trace(m_node); 696 visitor->trace(m_node);
696 CSSStyleDeclaration::trace(visitor); 697 CSSStyleDeclaration::trace(visitor);
697 } 698 }
698 699
699 } // namespace blink 700 } // namespace blink
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/css-properties-as-js-properties-expected.txt ('k') | Source/core/css/CSSProperties.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698