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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSSelector.h

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * 1999 Waldo Bastian (bastian@kde.org) 3 * 1999 Waldo Bastian (bastian@kde.org)
4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights
5 * reserved. 5 * reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 PseudoStart, 196 PseudoStart,
197 PseudoEnd, 197 PseudoEnd,
198 PseudoDoubleButton, 198 PseudoDoubleButton,
199 PseudoSingleButton, 199 PseudoSingleButton,
200 PseudoNoButton, 200 PseudoNoButton,
201 PseudoSelection, 201 PseudoSelection,
202 PseudoLeftPage, 202 PseudoLeftPage,
203 PseudoRightPage, 203 PseudoRightPage,
204 PseudoFirstPage, 204 PseudoFirstPage,
205 PseudoFullScreen, 205 PseudoFullScreen,
206 PseudoFullScreenAncestor,
207 PseudoInRange, 206 PseudoInRange,
208 PseudoOutOfRange, 207 PseudoOutOfRange,
209 // Pseudo elements in UA ShadowRoots. Available in any stylesheets. 208 // Pseudo elements in UA ShadowRoots. Available in any stylesheets.
210 PseudoWebKitCustomElement, 209 PseudoWebKitCustomElement,
211 // Pseudo elements in UA ShadowRoots. Availble only in UA stylesheets. 210 // Pseudo elements in UA ShadowRoots. Availble only in UA stylesheets.
212 PseudoBlinkInternalElement, 211 PseudoBlinkInternalElement,
213 PseudoCue, 212 PseudoCue,
214 PseudoFutureCue, 213 PseudoFutureCue,
215 PseudoPastCue, 214 PseudoPastCue,
216 PseudoUnresolved, 215 PseudoUnresolved,
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 } 532 }
534 533
535 inline bool CSSSelector::isIdClassOrAttributeSelector() const { 534 inline bool CSSSelector::isIdClassOrAttributeSelector() const {
536 return isAttributeSelector() || match() == CSSSelector::Id || 535 return isAttributeSelector() || match() == CSSSelector::Id ||
537 match() == CSSSelector::Class; 536 match() == CSSSelector::Class;
538 } 537 }
539 538
540 } // namespace blink 539 } // namespace blink
541 540
542 #endif // CSSSelector_h 541 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp ('k') | third_party/WebKit/Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698