nsIDOMXULButtonElement.idl (677B)
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 #include "nsIDOMXULControlElement.idl" 7 8 [scriptable, uuid(6ed53cfb-9e59-424c-af8d-e74582381951)] 9 interface nsIDOMXULButtonElement : nsIDOMXULControlElement { 10 attribute AString type; 11 12 // For buttons of type="menu" only. 13 attribute boolean open; 14 15 // For buttons of type="checkbox" only. 16 attribute boolean checked; 17 18 // For buttons of type="radio" only. 19 attribute AString group; 20 };