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

Unified Diff: Source/core/rendering/style/RenderStyle.h

Issue 17654008: Implement the ::backdrop pseudo-element for modal <dialog>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix failing tests Created 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/style/RenderStyle.h
diff --git a/Source/core/rendering/style/RenderStyle.h b/Source/core/rendering/style/RenderStyle.h
index ebdd80e54b4d7de2e8056366000d6ccc56b59c5b..0a016689f7ab281c08e3928cebc852e3c63351b8 100644
--- a/Source/core/rendering/style/RenderStyle.h
+++ b/Source/core/rendering/style/RenderStyle.h
@@ -241,7 +241,7 @@ protected:
unsigned _page_break_inside : 2; // EPageBreak
unsigned _styleType : 6; // PseudoId
- unsigned _pseudoBits : 7;
+ unsigned _pseudoBits : 8;
unsigned explicitInheritance : 1; // Explicitly inherits a non-inherited property
unsigned unique : 1; // Style can not be shared.
unsigned emptyState : 1;
@@ -262,7 +262,7 @@ protected:
unsigned _affectedByDrag : 1;
unsigned _isLink : 1;
// If you add more style bits here, you will also need to update RenderStyle::copyNonInheritedFrom()
- // 59 bits
+ // 60 bits
} noninherited_flags;
// !END SYNC!

Powered by Google App Engine
This is Rietveld 408576698