Home | History | Annotate | Download | only in html
      1 /*
      2  * Copyright (C) 2006, 2010 Apple Inc. All rights reserved.
      3  * Copyright (C) 2006 Samuel Weinig <sam.weinig (at) gmail.com>
      4  * Copyright (C) 2013 Samsung Electronics. All rights reserved.
      5  *
      6  * This library is free software; you can redistribute it and/or
      7  * modify it under the terms of the GNU Library General Public
      8  * License as published by the Free Software Foundation; either
      9  * version 2 of the License, or (at your option) any later version.
     10  *
     11  * This library is distributed in the hope that it will be useful,
     12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     14  * Library General Public License for more details.
     15  *
     16  * You should have received a copy of the GNU Library General Public License
     17  * along with this library; see the file COPYING.LIB.  If not, write to
     18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     19  * Boston, MA 02110-1301, USA.
     20  */
     21 
     22 // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#htmlselectelement
     23 
     24 interface HTMLSelectElement : HTMLElement {
     25     [Reflect] attribute boolean autofocus;
     26     [Reflect] attribute boolean disabled;
     27     [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
     28     attribute boolean multiple;
     29     [Reflect] attribute DOMString name;
     30     [Reflect] attribute boolean required;
     31     attribute long size;
     32 
     33     readonly attribute DOMString type;
     34 
     35     readonly attribute HTMLOptionsCollection options;
     36     [RaisesException=Setter] attribute unsigned long length;
     37 
     38     getter Element item(unsigned long index);
     39     Element namedItem([Default=Undefined] optional DOMString name);
     40     // FIXME: should be union type http://crbug.com/240176
     41     [RaisesException, TypeChecking=Interface] void add(HTMLElement element, optional HTMLElement? before = null);
     42     [ImplementedAs=addBeforeOptionAtIndex, RaisesException, TypeChecking=Interface] void add(HTMLElement element, long before);
     43     [RaisesException] void remove(); // ChildNode overload
     44     void remove(long index);
     45     [RaisesException, TypeChecking=Interface] setter HTMLOptionElement (unsigned long index, HTMLOptionElement? value);
     46 
     47     readonly attribute HTMLCollection selectedOptions;
     48              attribute long selectedIndex;
     49              attribute DOMString value;
     50 
     51     readonly attribute boolean willValidate;
     52     readonly attribute ValidityState validity;
     53     readonly attribute DOMString validationMessage;
     54     boolean checkValidity();
     55     void setCustomValidity([TreatUndefinedAs=NullString] DOMString? error);
     56 
     57     readonly attribute NodeList labels;
     58 };
     59