| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/dom/TextLinkColors.h" | 42 #include "core/dom/TextLinkColors.h" |
| 43 #include "core/dom/TreeScope.h" | 43 #include "core/dom/TreeScope.h" |
| 44 #include "core/dom/UserActionElementSet.h" | 44 #include "core/dom/UserActionElementSet.h" |
| 45 #include "core/dom/ViewportDescription.h" | 45 #include "core/dom/ViewportDescription.h" |
| 46 #include "core/dom/custom/CustomElement.h" | 46 #include "core/dom/custom/CustomElement.h" |
| 47 #include "core/html/CollectionType.h" | 47 #include "core/html/CollectionType.h" |
| 48 #include "core/page/FocusDirection.h" | 48 #include "core/page/FocusDirection.h" |
| 49 #include "core/page/PageVisibilityState.h" | 49 #include "core/page/PageVisibilityState.h" |
| 50 #include "core/rendering/HitTestRequest.h" | 50 #include "core/rendering/HitTestRequest.h" |
| 51 #include "platform/Timer.h" | 51 #include "platform/Timer.h" |
| 52 #include "weborigin/ReferrerPolicy.h" | 52 #include "platform/weborigin/ReferrerPolicy.h" |
| 53 #include "wtf/HashSet.h" | 53 #include "wtf/HashSet.h" |
| 54 #include "wtf/OwnPtr.h" | 54 #include "wtf/OwnPtr.h" |
| 55 #include "wtf/PassOwnPtr.h" | 55 #include "wtf/PassOwnPtr.h" |
| 56 #include "wtf/PassRefPtr.h" | 56 #include "wtf/PassRefPtr.h" |
| 57 #include "wtf/WeakPtr.h" | 57 #include "wtf/WeakPtr.h" |
| 58 | 58 |
| 59 namespace WebCore { | 59 namespace WebCore { |
| 60 | 60 |
| 61 class AXObjectCache; | 61 class AXObjectCache; |
| 62 class AnimationClock; | 62 class AnimationClock; |
| (...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1379 inline bool Node::isDocumentNode() const | 1379 inline bool Node::isDocumentNode() const |
| 1380 { | 1380 { |
| 1381 return this == documentInternal(); | 1381 return this == documentInternal(); |
| 1382 } | 1382 } |
| 1383 | 1383 |
| 1384 Node* eventTargetNodeForDocument(Document*); | 1384 Node* eventTargetNodeForDocument(Document*); |
| 1385 | 1385 |
| 1386 } // namespace WebCore | 1386 } // namespace WebCore |
| 1387 | 1387 |
| 1388 #endif // Document_h | 1388 #endif // Document_h |
| OLD | NEW |