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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All |
6 * rights reserved. | 6 * rights reserved. |
7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * | 10 * |
(...skipping 11 matching lines...) Expand all Loading... |
22 * along with this library; see the file COPYING.LIB. If not, write to | 22 * along with this library; see the file COPYING.LIB. If not, write to |
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 * Boston, MA 02110-1301, USA. | 24 * Boston, MA 02110-1301, USA. |
25 */ | 25 */ |
26 | 26 |
27 #include "core/dom/Node.h" | 27 #include "core/dom/Node.h" |
28 | 28 |
29 #include "bindings/core/v8/DOMDataStore.h" | 29 #include "bindings/core/v8/DOMDataStore.h" |
30 #include "bindings/core/v8/ExceptionState.h" | 30 #include "bindings/core/v8/ExceptionState.h" |
31 #include "bindings/core/v8/Microtask.h" | 31 #include "bindings/core/v8/Microtask.h" |
| 32 #include "bindings/core/v8/NodeOrString.h" |
32 #include "bindings/core/v8/ScriptWrappableVisitor.h" | 33 #include "bindings/core/v8/ScriptWrappableVisitor.h" |
33 #include "bindings/core/v8/V8DOMWrapper.h" | 34 #include "bindings/core/v8/V8DOMWrapper.h" |
34 #include "core/HTMLNames.h" | 35 #include "core/HTMLNames.h" |
35 #include "core/MathMLNames.h" | 36 #include "core/MathMLNames.h" |
36 #include "core/css/CSSSelector.h" | 37 #include "core/css/CSSSelector.h" |
37 #include "core/css/resolver/StyleResolver.h" | 38 #include "core/css/resolver/StyleResolver.h" |
38 #include "core/dom/AXObjectCache.h" | 39 #include "core/dom/AXObjectCache.h" |
39 #include "core/dom/Attr.h" | 40 #include "core/dom/Attr.h" |
40 #include "core/dom/Attribute.h" | 41 #include "core/dom/Attribute.h" |
41 #include "core/dom/ChildListMutationScope.h" | 42 #include "core/dom/ChildListMutationScope.h" |
(...skipping 2518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2560 if (node) { | 2561 if (node) { |
2561 std::stringstream stream; | 2562 std::stringstream stream; |
2562 node->printNodePathTo(stream); | 2563 node->printNodePathTo(stream); |
2563 LOG(INFO) << stream.str(); | 2564 LOG(INFO) << stream.str(); |
2564 } else { | 2565 } else { |
2565 LOG(INFO) << "Cannot showNodePath for <null>"; | 2566 LOG(INFO) << "Cannot showNodePath for <null>"; |
2566 } | 2567 } |
2567 } | 2568 } |
2568 | 2569 |
2569 #endif | 2570 #endif |
OLD | NEW |