| Index: sky/engine/core/dom/Node.h
|
| diff --git a/sky/engine/core/dom/Node.h b/sky/engine/core/dom/Node.h
|
| index 1b9166e115ee1c1ed4443b6b2ce20d8469cdfb52..ac5dfdf75ef324b37659b41178ec4d75169c1975 100644
|
| --- a/sky/engine/core/dom/Node.h
|
| +++ b/sky/engine/core/dom/Node.h
|
| @@ -53,7 +53,6 @@ class EventListener;
|
| class ExceptionState;
|
| class FloatPoint;
|
| class LocalFrame;
|
| -class HTMLQualifiedName;
|
| class IntRect;
|
| class KeyboardEvent;
|
| class NSResolver;
|
| @@ -134,7 +133,6 @@ public:
|
|
|
| // DOM methods & attributes for Node
|
|
|
| - bool hasTagName(const HTMLQualifiedName&) const;
|
| virtual String nodeName() const = 0;
|
| virtual NodeType nodeType() const = 0;
|
| ContainerNode* parentNode() const;
|
| @@ -197,7 +195,7 @@ public:
|
| // PseudoElements and VTTElements. It's possible we can just eliminate all the checks
|
| // since those elements will never have class names, inline style, or other things that
|
| // this apparently guards against.
|
| - bool isStyledElement() const { return isHTMLElement(); }
|
| + bool isStyledElement() const { return isElementNode(); }
|
|
|
| bool isDocumentNode() const;
|
| bool isTreeScope() const;
|
|
|