Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Side by Side Diff: Source/core/dom/Element.h

Issue 143173003: Remove unused feature ElementSetAttributeNodeNS (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed failing test case expectation Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl e Inc. All rights reserved.
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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 virtual void didMoveToNewDocument(Document&) OVERRIDE; 203 virtual void didMoveToNewDocument(Document&) OVERRIDE;
204 204
205 void removeAttribute(const AtomicString& name); 205 void removeAttribute(const AtomicString& name);
206 void removeAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName); 206 void removeAttributeNS(const AtomicString& namespaceURI, const AtomicString& localName);
207 207
208 PassRefPtr<Attr> detachAttribute(size_t index); 208 PassRefPtr<Attr> detachAttribute(size_t index);
209 209
210 PassRefPtr<Attr> getAttributeNode(const AtomicString& name); 210 PassRefPtr<Attr> getAttributeNode(const AtomicString& name);
211 PassRefPtr<Attr> getAttributeNodeNS(const AtomicString& namespaceURI, const AtomicString& localName); 211 PassRefPtr<Attr> getAttributeNodeNS(const AtomicString& namespaceURI, const AtomicString& localName);
212 PassRefPtr<Attr> setAttributeNode(Attr*, ExceptionState&); 212 PassRefPtr<Attr> setAttributeNode(Attr*, ExceptionState&);
213 PassRefPtr<Attr> setAttributeNodeNS(Attr*, ExceptionState&);
214 PassRefPtr<Attr> removeAttributeNode(Attr*, ExceptionState&); 213 PassRefPtr<Attr> removeAttributeNode(Attr*, ExceptionState&);
215 214
216 PassRefPtr<Attr> attrIfExists(const QualifiedName&); 215 PassRefPtr<Attr> attrIfExists(const QualifiedName&);
217 PassRefPtr<Attr> ensureAttr(const QualifiedName&); 216 PassRefPtr<Attr> ensureAttr(const QualifiedName&);
218 217
219 const Vector<RefPtr<Attr> >& attrNodeList(); 218 const Vector<RefPtr<Attr> >& attrNodeList();
220 219
221 CSSStyleDeclaration* style(); 220 CSSStyleDeclaration* style();
222 221
223 const QualifiedName& tagQName() const { return m_tagName; } 222 const QualifiedName& tagQName() const { return m_tagName; }
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 } 886 }
888 887
889 inline bool isShadowHost(const Element* element) 888 inline bool isShadowHost(const Element* element)
890 { 889 {
891 return element && element->shadow(); 890 return element && element->shadow();
892 } 891 }
893 892
894 } // namespace 893 } // namespace
895 894
896 #endif 895 #endif
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/security/xss-DENIED-iframe-src-alias-expected.txt ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698