gecko-dev/dom/webidl/ChromeNodeList.webidl
Gijs Kruitbosch fbf89fb02e Bug 120684 - use ChromeNodeList in toolkit's listboxes' selectedItems implementation, r=dao,smaug
--HG--
extra : commitid : DzQPAIbbhpX
extra : rebase_source : 4bd9ac283e1c789c2577dc5d4cc85511f35ac27d
2015-10-26 17:25:29 +01:00

14 lines
440 B
Plaintext

/* -*- 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/.
*/
[Constructor, Func="IsChromeOrXBL"]
interface ChromeNodeList : NodeList {
[Throws]
void append(Node aNode);
[Throws]
void remove(Node aNode);
};