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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp

Issue 2557943002: Sync requestFullscreen() and exitFullscreen() algorithms with the spec (Closed)
Patch Set: rebase Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All
6 * rights reserved. 6 * rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
10 * (http://www.torchmobile.com/) 10 * (http://www.torchmobile.com/)
(...skipping 16 matching lines...) Expand all
27 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 27 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 * Boston, MA 02110-1301, USA. 28 * Boston, MA 02110-1301, USA.
29 */ 29 */
30 30
31 #include "core/css/CSSDefaultStyleSheets.h" 31 #include "core/css/CSSDefaultStyleSheets.h"
32 32
33 #include "core/MathMLNames.h" 33 #include "core/MathMLNames.h"
34 #include "core/css/MediaQueryEvaluator.h" 34 #include "core/css/MediaQueryEvaluator.h"
35 #include "core/css/RuleSet.h" 35 #include "core/css/RuleSet.h"
36 #include "core/css/StyleSheetContents.h" 36 #include "core/css/StyleSheetContents.h"
37 #include "core/dom/Fullscreen.h"
38 #include "core/html/HTMLAnchorElement.h" 37 #include "core/html/HTMLAnchorElement.h"
39 #include "core/html/HTMLHtmlElement.h" 38 #include "core/html/HTMLHtmlElement.h"
40 #include "core/layout/LayoutTheme.h" 39 #include "core/layout/LayoutTheme.h"
41 #include "platform/PlatformResourceLoader.h" 40 #include "platform/PlatformResourceLoader.h"
42 #include "wtf/LeakAnnotations.h" 41 #include "wtf/LeakAnnotations.h"
43 42
44 namespace blink { 43 namespace blink {
45 44
46 using namespace HTMLNames; 45 using namespace HTMLNames;
47 46
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 visitor->trace(m_televisionViewportStyleSheet); 184 visitor->trace(m_televisionViewportStyleSheet);
186 visitor->trace(m_xhtmlMobileProfileStyleSheet); 185 visitor->trace(m_xhtmlMobileProfileStyleSheet);
187 visitor->trace(m_quirksStyleSheet); 186 visitor->trace(m_quirksStyleSheet);
188 visitor->trace(m_svgStyleSheet); 187 visitor->trace(m_svgStyleSheet);
189 visitor->trace(m_mathmlStyleSheet); 188 visitor->trace(m_mathmlStyleSheet);
190 visitor->trace(m_mediaControlsStyleSheet); 189 visitor->trace(m_mediaControlsStyleSheet);
191 visitor->trace(m_fullscreenStyleSheet); 190 visitor->trace(m_fullscreenStyleSheet);
192 } 191 }
193 192
194 } // namespace blink 193 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698