servo: Merge #1835 - Remove Node.hasAttributes() method that was removed from the specification (from Ms2ger:hasAttributes); r=metajack

Source-Repo: https://github.com/servo/servo
Source-Revision: 3d8e469534dc6bd0ef6ae53669cbbb706c445b7a
This commit is contained in:
Ms2ger 2014-03-06 09:43:32 -05:00
Родитель 1baf85ee21
Коммит 2badad27fd
2 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -1546,11 +1546,6 @@ impl Node {
None
}
// http://dom.spec.whatwg.org/#dom-node-hasattributes
pub fn HasAttributes(&self) -> bool {
false
}
//
// Low-level pointer stitching
//

Просмотреть файл

@ -88,6 +88,4 @@ interface Node : EventTarget {
readonly attribute DOMString? prefix;
[Constant]
readonly attribute DOMString? localName;
boolean hasAttributes();
};