| Index: Source/core/dom/Element.h | 
| diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h | 
| index 05fbf26b540cbdf4ac5a1fefef3027101536be83..5758d3427f738a5aeeb653fcf7b5e7406f715c72 100644 | 
| --- a/Source/core/dom/Element.h | 
| +++ b/Source/core/dom/Element.h | 
| @@ -370,6 +370,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; } | 
|  | 
| KURL getURLAttribute(const QualifiedName&) const; | 
| @@ -665,8 +666,6 @@ private: | 
| void detachAttrNodeFromElementWithValue(Attr*, const AtomicString& value); | 
| void detachAttrNodeAtIndex(Attr*, size_t index); | 
|  | 
| -    bool isJavaScriptURLAttribute(const Attribute&) const; | 
| - | 
| RefPtr<ElementData> m_elementData; | 
| }; | 
|  | 
|  |