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

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 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 | 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 // It is mutable so we can pass around const RenderStyles to resolve len gths. 250 // It is mutable so we can pass around const RenderStyles to resolve len gths.
251 mutable unsigned hasViewportUnits : 1; 251 mutable unsigned hasViewportUnits : 1;
252 252
253 // 32 bits 253 // 32 bits
254 254
255 unsigned pageBreakBefore : 2; // EPageBreak 255 unsigned pageBreakBefore : 2; // EPageBreak
256 unsigned pageBreakAfter : 2; // EPageBreak 256 unsigned pageBreakAfter : 2; // EPageBreak
257 unsigned pageBreakInside : 2; // EPageBreak 257 unsigned pageBreakInside : 2; // EPageBreak
258 258
259 unsigned styleType : 6; // PseudoId 259 unsigned styleType : 6; // PseudoId
260 unsigned pseudoBits : 8; 260 unsigned pseudoBits : 9; // # public pseudoIds - 1
261 unsigned explicitInheritance : 1; // Explicitly inherits a non-inherited property 261 unsigned explicitInheritance : 1; // Explicitly inherits a non-inherited property
262 unsigned unique : 1; // Style can not be shared. 262 unsigned unique : 1; // Style can not be shared.
263 263
264 unsigned emptyState : 1; 264 unsigned emptyState : 1;
265 265
266 unsigned affectedByFocus : 1; 266 unsigned affectedByFocus : 1;
267 unsigned affectedByHover : 1; 267 unsigned affectedByHover : 1;
268 unsigned affectedByActive : 1; 268 unsigned affectedByActive : 1;
269 unsigned affectedByDrag : 1; 269 unsigned affectedByDrag : 1;
270 270
(...skipping 1582 matching lines...) Expand 10 before | Expand all | Expand 10 after
1853 inline bool RenderStyle::hasPseudoElementStyle() const 1853 inline bool RenderStyle::hasPseudoElementStyle() const
1854 { 1854 {
1855 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1855 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1856 } 1856 }
1857 1857
1858 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1858 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1859 1859
1860 } // namespace blink 1860 } // namespace blink
1861 1861
1862 #endif // RenderStyle_h 1862 #endif // RenderStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698