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

Side by Side Diff: Source/core/rendering/style/StyleRareInheritedData.h

Issue 298723011: Make 'will-change: contents' suppress compositing in subtree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
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 Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 unsigned m_textOrientation : 2; // TextOrientation 124 unsigned m_textOrientation : 2; // TextOrientation
125 unsigned m_textIndentLine : 1; // TextIndentEachLine 125 unsigned m_textIndentLine : 1; // TextIndentEachLine
126 unsigned m_textIndentType : 1; // TextIndentHanging 126 unsigned m_textIndentType : 1; // TextIndentHanging
127 unsigned m_lineBoxContain: 7; // LineBoxContain 127 unsigned m_lineBoxContain: 7; // LineBoxContain
128 // CSS Image Values Level 3 128 // CSS Image Values Level 3
129 unsigned m_imageRendering : 2; // EImageRendering 129 unsigned m_imageRendering : 2; // EImageRendering
130 unsigned m_textUnderlinePosition : 2; // TextUnderlinePosition 130 unsigned m_textUnderlinePosition : 2; // TextUnderlinePosition
131 unsigned m_rubyPosition : 1; // RubyPosition 131 unsigned m_rubyPosition : 1; // RubyPosition
132 unsigned m_touchActionDelay : 1; // TouchActionDelay 132 unsigned m_touchActionDelay : 1; // TouchActionDelay
133 133
134 // Though will-change is not itself an inherited property, the intent
135 // expressed by 'will-change: contents' includes descendants.
136 unsigned m_subtreeWillChangeContents : 1;
137
134 AtomicString hyphenationString; 138 AtomicString hyphenationString;
135 short hyphenationLimitBefore; 139 short hyphenationLimitBefore;
136 short hyphenationLimitAfter; 140 short hyphenationLimitAfter;
137 short hyphenationLimitLines; 141 short hyphenationLimitLines;
138 142
139 AtomicString locale; 143 AtomicString locale;
140 144
141 AtomicString textEmphasisCustomMark; 145 AtomicString textEmphasisCustomMark;
142 RefPtr<QuotesData> quotes; 146 RefPtr<QuotesData> quotes;
143 147
144 unsigned m_tabSize; 148 unsigned m_tabSize;
145 149
146 Color tapHighlightColor; 150 Color tapHighlightColor;
147 151
148 RefPtr<AppliedTextDecorationList> appliedTextDecorations; 152 RefPtr<AppliedTextDecorationList> appliedTextDecorations;
149 153
150 private: 154 private:
151 StyleRareInheritedData(); 155 StyleRareInheritedData();
152 StyleRareInheritedData(const StyleRareInheritedData&); 156 StyleRareInheritedData(const StyleRareInheritedData&);
153 }; 157 };
154 158
155 } // namespace WebCore 159 } // namespace WebCore
156 160
157 #endif // StyleRareInheritedData_h 161 #endif // StyleRareInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698