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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed compilation error in mac and crash in linux/window that were reported by trybots. Created 6 years, 3 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/RenderStyleConstants.h
diff --git a/Source/core/rendering/style/RenderStyleConstants.h b/Source/core/rendering/style/RenderStyleConstants.h
index a58e2fd766fa0a939d753b841e005c897ca168d1..164e1fd5429538d1729a3cab8532494399a0689f 100644
--- a/Source/core/rendering/style/RenderStyleConstants.h
+++ b/Source/core/rendering/style/RenderStyleConstants.h
@@ -157,6 +157,10 @@ enum EMaskSourceType { MaskAlpha, MaskLuminance };
enum EMarqueeBehavior { MNONE, MSCROLL, MSLIDE, MALTERNATE };
enum EMarqueeDirection { MAUTO = 0, MLEFT = 1, MRIGHT = -1, MUP = 2, MDOWN = -2, MFORWARD = 3, MBACKWARD = -3 };
+// CSS3 Directional Focus Navigation
+
+enum ENavigationTarget { Current = 0, Root = 1, TargetName = 2 };
fs 2014/10/01 10:52:14 I think you can drop the explicit values, because
+
// Deprecated Flexible Box Properties
enum EBoxPack { Start, Center, End, Justify };

Powered by Google App Engine
This is Rietveld 408576698