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

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

Issue 1233503003: Remove the :-webkit-full-screen-document pseudo class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ManualTests/fullscreen/full-screen-flash.html ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 reserved. 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 PseudoStart, 180 PseudoStart,
181 PseudoEnd, 181 PseudoEnd,
182 PseudoDoubleButton, 182 PseudoDoubleButton,
183 PseudoSingleButton, 183 PseudoSingleButton,
184 PseudoNoButton, 184 PseudoNoButton,
185 PseudoSelection, 185 PseudoSelection,
186 PseudoLeftPage, 186 PseudoLeftPage,
187 PseudoRightPage, 187 PseudoRightPage,
188 PseudoFirstPage, 188 PseudoFirstPage,
189 PseudoFullScreen, 189 PseudoFullScreen,
190 PseudoFullScreenDocument,
191 PseudoFullScreenAncestor, 190 PseudoFullScreenAncestor,
192 PseudoInRange, 191 PseudoInRange,
193 PseudoOutOfRange, 192 PseudoOutOfRange,
194 PseudoWebKitCustomElement, 193 PseudoWebKitCustomElement,
195 PseudoCue, 194 PseudoCue,
196 PseudoFutureCue, 195 PseudoFutureCue,
197 PseudoPastCue, 196 PseudoPastCue,
198 PseudoUnresolved, 197 PseudoUnresolved,
199 PseudoContent, 198 PseudoContent,
200 PseudoHost, 199 PseudoHost,
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 if (m_hasRareData) 479 if (m_hasRareData)
481 return m_data.m_rareData->m_value; 480 return m_data.m_rareData->m_value;
482 // AtomicString is really just a StringImpl* so the cast below is safe. 481 // AtomicString is really just a StringImpl* so the cast below is safe.
483 // FIXME: Perhaps call sites could be changed to accept StringImpl? 482 // FIXME: Perhaps call sites could be changed to accept StringImpl?
484 return *reinterpret_cast<const AtomicString*>(&m_data.m_value); 483 return *reinterpret_cast<const AtomicString*>(&m_data.m_value);
485 } 484 }
486 485
487 } // namespace blink 486 } // namespace blink
488 487
489 #endif // CSSSelector_h 488 #endif // CSSSelector_h
OLDNEW
« no previous file with comments | « ManualTests/fullscreen/full-screen-flash.html ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698