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

Unified Diff: Source/core/css/parser/BisonCSSParser-in.cpp

Issue 807473002: Remove the use of :-webkit-full-screen-document. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added counter for :-webkit-full-screen 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/fullscreen.css ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/BisonCSSParser-in.cpp
diff --git a/Source/core/css/parser/BisonCSSParser-in.cpp b/Source/core/css/parser/BisonCSSParser-in.cpp
index 9cc86dc57ce4b89fd88b80f2909b98ebf57ca055..e61a1623c37bc0fb5c45903265ce170057c69046 100644
--- a/Source/core/css/parser/BisonCSSParser-in.cpp
+++ b/Source/core/css/parser/BisonCSSParser-in.cpp
@@ -821,6 +821,15 @@ static void recordSelectorStats(const CSSParserContext& context, const CSSSelect
case CSSSelector::PseudoHostContext:
feature = UseCounter::CSSSelectorPseudoHostContext;
break;
+ case CSSSelector::PseudoFullScreenDocument:
+ feature = UseCounter::CSSSelectorPseudoFullScreenDocument;
+ break;
+ case CSSSelector::PseudoFullScreenAncestor:
+ feature = UseCounter::CSSSelectorPseudoFullScreenAncestor;
+ break;
+ case CSSSelector::PseudoFullScreen:
+ feature = UseCounter::CSSSelectorPseudoFullScreen;
+ break;
default:
break;
}
« no previous file with comments | « Source/core/css/fullscreen.css ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698