| 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-2011, 2014 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004-2011, 2014 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 | 432 |
| 433 #ifndef NDEBUG | 433 #ifndef NDEBUG |
| 434 virtual void formatForDebugger(char* buffer, unsigned length) const; | 434 virtual void formatForDebugger(char* buffer, unsigned length) const; |
| 435 | 435 |
| 436 void showNode(const char* prefix = "") const; | 436 void showNode(const char* prefix = "") const; |
| 437 void showTreeForThis() const; | 437 void showTreeForThis() const; |
| 438 void showNodePathForThis() const; | 438 void showNodePathForThis() const; |
| 439 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = 0, const char* markedLabel2 = 0) const; | 439 void showTreeAndMark(const Node* markedNode1, const char* markedLabel1, cons
t Node* markedNode2 = 0, const char* markedLabel2 = 0) const; |
| 440 #endif | 440 #endif |
| 441 | 441 |
| 442 bool willRespondToMouseMoveEvents(); | |
| 443 | |
| 444 virtual bool willRespondToMouseClickEvents(); | |
| 445 | |
| 446 enum ShadowTreesTreatment { | 442 enum ShadowTreesTreatment { |
| 447 TreatShadowTreesAsDisconnected, | 443 TreatShadowTreesAsDisconnected, |
| 448 TreatShadowTreesAsComposed | 444 TreatShadowTreesAsComposed |
| 449 }; | 445 }; |
| 450 | 446 |
| 451 unsigned short compareDocumentPosition(const Node*, ShadowTreesTreatment = T
reatShadowTreesAsDisconnected) const; | 447 unsigned short compareDocumentPosition(const Node*, ShadowTreesTreatment = T
reatShadowTreesAsDisconnected) const; |
| 452 | 448 |
| 453 virtual Node* toNode() override final; | 449 virtual Node* toNode() override final; |
| 454 | 450 |
| 455 virtual const AtomicString& interfaceName() const override; | 451 virtual const AtomicString& interfaceName() const override; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 } // namespace blink | 687 } // namespace blink |
| 692 | 688 |
| 693 #ifndef NDEBUG | 689 #ifndef NDEBUG |
| 694 // Outside the WebCore namespace for ease of invocation from gdb. | 690 // Outside the WebCore namespace for ease of invocation from gdb. |
| 695 void showNode(const blink::Node*); | 691 void showNode(const blink::Node*); |
| 696 void showTree(const blink::Node*); | 692 void showTree(const blink::Node*); |
| 697 void showNodePath(const blink::Node*); | 693 void showNodePath(const blink::Node*); |
| 698 #endif | 694 #endif |
| 699 | 695 |
| 700 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ | 696 #endif // SKY_ENGINE_CORE_DOM_NODE_H_ |
| OLD | NEW |