tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsIDOMXULSelectCntrlItemEl.idl (826B)


      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 "nsISupports.idl"
      7 interface nsIDOMXULSelectControlElement;
      8 
      9 webidl Element;
     10 
     11 [scriptable, uuid(5c6be58f-17df-4750-88a5-4a59ac28adc9)]
     12 interface nsIDOMXULSelectControlItemElement : nsISupports {
     13  attribute boolean disabled;
     14  attribute AString image;
     15  attribute AString label;
     16  attribute AString accessKey;
     17  attribute AString command;
     18 
     19  attribute AString value;
     20 
     21  readonly attribute boolean selected;
     22 
     23  readonly attribute Element control;
     24 
     25  // XXX defined in XULElement, but should be defined here
     26  // void doCommand();
     27 };