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

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

Issue 778003003: List marker pseudo elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // It is mutable so we can pass around const RenderStyles to resolve len gths. 249 // It is mutable so we can pass around const RenderStyles to resolve len gths.
250 mutable unsigned hasViewportUnits : 1; 250 mutable unsigned hasViewportUnits : 1;
251 251
252 // 32 bits 252 // 32 bits
253 253
254 unsigned pageBreakBefore : 2; // EPageBreak 254 unsigned pageBreakBefore : 2; // EPageBreak
255 unsigned pageBreakAfter : 2; // EPageBreak 255 unsigned pageBreakAfter : 2; // EPageBreak
256 unsigned pageBreakInside : 2; // EPageBreak 256 unsigned pageBreakInside : 2; // EPageBreak
257 257
258 unsigned styleType : 6; // PseudoId 258 unsigned styleType : 6; // PseudoId
259 unsigned pseudoBits : 8; 259 unsigned pseudoBits : 9; // # public pseudoIds - 1
260 unsigned explicitInheritance : 1; // Explicitly inherits a non-inherited property 260 unsigned explicitInheritance : 1; // Explicitly inherits a non-inherited property
261 unsigned unique : 1; // Style can not be shared. 261 unsigned unique : 1; // Style can not be shared.
262 262
263 unsigned emptyState : 1; 263 unsigned emptyState : 1;
264 264
265 unsigned affectedByFocus : 1; 265 unsigned affectedByFocus : 1;
266 unsigned affectedByHover : 1; 266 unsigned affectedByHover : 1;
267 unsigned affectedByActive : 1; 267 unsigned affectedByActive : 1;
268 unsigned affectedByDrag : 1; 268 unsigned affectedByDrag : 1;
269 269
(...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1840 inline bool RenderStyle::hasPseudoElementStyle() const 1840 inline bool RenderStyle::hasPseudoElementStyle() const
1841 { 1841 {
1842 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1842 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1843 } 1843 }
1844 1844
1845 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1845 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1846 1846
1847 } // namespace blink 1847 } // namespace blink
1848 1848
1849 #endif // RenderStyle_h 1849 #endif // RenderStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698