Mypal/dom/webidl/NamedNodeMap.webidl

23 lines
855 B
Plaintext
Raw Normal View History

2019-03-11 03:26:37 -07:00
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
[LegacyUnenumerableNamedProperties]
interface NamedNodeMap {
getter Attr? getNamedItem(DOMString name);
2020-03-12 10:41:43 -07:00
[CEReactions, Throws, BinaryName="setNamedItemNS"]
2019-03-11 03:26:37 -07:00
Attr? setNamedItem(Attr arg);
2020-03-12 10:41:43 -07:00
[CEReactions, Throws]
2019-03-11 03:26:37 -07:00
Attr removeNamedItem(DOMString name);
getter Attr? item(unsigned long index);
readonly attribute unsigned long length;
Attr? getNamedItemNS(DOMString? namespaceURI, DOMString localName);
2020-03-12 10:41:43 -07:00
[CEReactions, Throws]
2019-03-11 03:26:37 -07:00
Attr? setNamedItemNS(Attr arg);
2020-03-12 10:41:43 -07:00
[CEReactions, Throws]
2019-03-11 03:26:37 -07:00
Attr removeNamedItemNS(DOMString? namespaceURI, DOMString localName);
};