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

Unified Diff: third_party/WebKit/Source/build/scripts/make_computed_style_base.py

Issue 2795143004: [selectors4] Implement :focus-within pseudo-class (Closed)
Patch Set: Rebased patch Created 3 years, 8 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: third_party/WebKit/Source/build/scripts/make_computed_style_base.py
diff --git a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
index 3043c718bc06a6515deae23f522439ae6d0f9dd3..e2849de568032b787c69592f3b46b8e5e232ae6c 100755
--- a/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
+++ b/third_party/WebKit/Source/build/scripts/make_computed_style_base.py
@@ -38,6 +38,8 @@ NONPROPERTIES = [
# Whether this style is affected by these pseudo-classes.
{'name': 'AffectedByFocus', 'field_template': 'monotonic_flag',
'inherited': False, 'independent': False, 'default_value': False},
+ {'name': 'AffectedByFocusWithin', 'field_template': 'monotonic_flag',
+ 'inherited': False, 'independent': False, 'default_value': False},
{'name': 'AffectedByHover', 'field_template': 'monotonic_flag',
'inherited': False, 'independent': False, 'default_value': False},
{'name': 'AffectedByActive', 'field_template': 'monotonic_flag',

Powered by Google App Engine
This is Rietveld 408576698