OLD | NEW |
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, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
(...skipping 30 matching lines...) Expand all Loading... |
41 #include "HTMLOptionElement.h" | 41 #include "HTMLOptionElement.h" |
42 #include "HTMLProgressElement.h" | 42 #include "HTMLProgressElement.h" |
43 #include "HTMLStyleElement.h" | 43 #include "HTMLStyleElement.h" |
44 #include "InsertionPoint.h" | 44 #include "InsertionPoint.h" |
45 #include "InspectorInstrumentation.h" | 45 #include "InspectorInstrumentation.h" |
46 #include "NodeRenderStyle.h" | 46 #include "NodeRenderStyle.h" |
47 #include "Page.h" | 47 #include "Page.h" |
48 #include "RenderObject.h" | 48 #include "RenderObject.h" |
49 #include "RenderScrollbar.h" | 49 #include "RenderScrollbar.h" |
50 #include "RenderStyle.h" | 50 #include "RenderStyle.h" |
51 #include "ScrollableArea.h" | |
52 #include "ScrollbarTheme.h" | |
53 #include "ShadowRoot.h" | 51 #include "ShadowRoot.h" |
54 #include "SiblingTraversalStrategies.h" | 52 #include "SiblingTraversalStrategies.h" |
55 #include "StyledElement.h" | 53 #include "StyledElement.h" |
56 #include "Text.h" | 54 #include "Text.h" |
| 55 #include "core/platform/ScrollableArea.h" |
| 56 #include "core/platform/ScrollbarTheme.h" |
57 | 57 |
58 #include "WebVTTElement.h" | 58 #include "WebVTTElement.h" |
59 | 59 |
60 namespace WebCore { | 60 namespace WebCore { |
61 | 61 |
62 using namespace HTMLNames; | 62 using namespace HTMLNames; |
63 | 63 |
64 SelectorChecker::SelectorChecker(Document* document, Mode mode) | 64 SelectorChecker::SelectorChecker(Document* document, Mode mode) |
65 : m_strictParsing(!document->inQuirksMode()) | 65 : m_strictParsing(!document->inQuirksMode()) |
66 , m_documentIsHTML(document->isHTMLDocument()) | 66 , m_documentIsHTML(document->isHTMLDocument()) |
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 return element->focused() && isFrameFocused(element); | 889 return element->focused() && isFrameFocused(element); |
890 } | 890 } |
891 | 891 |
892 template | 892 template |
893 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, Ps
eudoId&, const DOMSiblingTraversalStrategy&) const; | 893 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, Ps
eudoId&, const DOMSiblingTraversalStrategy&) const; |
894 | 894 |
895 template | 895 template |
896 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, Ps
eudoId&, const ShadowDOMSiblingTraversalStrategy&) const; | 896 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext&, Ps
eudoId&, const ShadowDOMSiblingTraversalStrategy&) const; |
897 | 897 |
898 } | 898 } |
OLD | NEW |