| 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 r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 SVGUseElement* svgShadowHost() const; | 199 SVGUseElement* svgShadowHost() const; |
| 200 #endif | 200 #endif |
| 201 | 201 |
| 202 #if ENABLE(WML) | 202 #if ENABLE(WML) |
| 203 virtual bool isWMLElement() const { return false; } | 203 virtual bool isWMLElement() const { return false; } |
| 204 #else | 204 #else |
| 205 static bool isWMLElement() { return false; } | 205 static bool isWMLElement() { return false; } |
| 206 #endif | 206 #endif |
| 207 | 207 |
| 208 virtual bool isMediaControlElement() const { return false; } | 208 virtual bool isMediaControlElement() const { return false; } |
| 209 virtual bool isMediaControls() const { return false; } |
| 209 bool isStyledElement() const { return getFlag(IsStyledElementFlag); } | 210 bool isStyledElement() const { return getFlag(IsStyledElementFlag); } |
| 210 virtual bool isFrameOwnerElement() const { return false; } | 211 virtual bool isFrameOwnerElement() const { return false; } |
| 211 virtual bool isAttributeNode() const { return false; } | 212 virtual bool isAttributeNode() const { return false; } |
| 212 bool isCommentNode() const { return getFlag(IsCommentFlag); } | 213 bool isCommentNode() const { return getFlag(IsCommentFlag); } |
| 213 virtual bool isCharacterDataNode() const { return false; } | 214 virtual bool isCharacterDataNode() const { return false; } |
| 214 bool isDocumentNode() const; | 215 bool isDocumentNode() const; |
| 215 bool isShadowRoot() const { return getFlag(IsShadowRootFlag); } | 216 bool isShadowRoot() const { return getFlag(IsShadowRootFlag); } |
| 216 // FIXME: Remove this when all shadow roots are ShadowRoots. | 217 // FIXME: Remove this when all shadow roots are ShadowRoots. |
| 217 virtual bool isShadowBoundary() const { return false; } | 218 virtual bool isShadowBoundary() const { return false; } |
| 218 virtual bool canHaveLightChildRendererWithShadow() const { return false; } | 219 virtual bool canHaveLightChildRendererWithShadow() const { return false; } |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 } | 743 } |
| 743 | 744 |
| 744 } //namespace | 745 } //namespace |
| 745 | 746 |
| 746 #ifndef NDEBUG | 747 #ifndef NDEBUG |
| 747 // Outside the WebCore namespace for ease of invocation from gdb. | 748 // Outside the WebCore namespace for ease of invocation from gdb. |
| 748 void showTree(const WebCore::Node*); | 749 void showTree(const WebCore::Node*); |
| 749 #endif | 750 #endif |
| 750 | 751 |
| 751 #endif | 752 #endif |
| OLD | NEW |