| Index: Source/core/dom/Element.h
|
| diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
|
| index 24d598b0cfc59925326958217178c91404f84d75..bfe3dd5f7eacc6f528ca2c9c0c2ce55de6a1e42b 100644
|
| --- a/Source/core/dom/Element.h
|
| +++ b/Source/core/dom/Element.h
|
| @@ -353,6 +353,7 @@ public:
|
| virtual void accessKeyAction(bool /*sendToAnyEvent*/) { }
|
|
|
| virtual bool isURLAttribute(const Attribute&) const { return false; }
|
| + bool isJavaScriptURLAttribute(const Attribute&) const;
|
| virtual bool isHTMLContentAttribute(const Attribute&) const { return false; }
|
|
|
| virtual bool isLiveLink() const { return false; }
|
| @@ -641,8 +642,6 @@ private:
|
| void detachAttrNodeFromElementWithValue(Attr*, const AtomicString& value);
|
| void detachAttrNodeAtIndex(Attr*, size_t index);
|
|
|
| - bool isJavaScriptURLAttribute(const Attribute&) const;
|
| -
|
| v8::Local<v8::Object> wrapCustomElement(v8::Isolate*, v8::Local<v8::Object> creationContext);
|
|
|
| RefPtrWillBeMember<ElementData> m_elementData;
|
|
|