Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / webidl / AutocompleteErrorEvent.webidl
blob23b8ae7392597a28be68ebd1ec6f7708b1c8a1ed
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/. */
6 enum AutoCompleteErrorReason {
7   "",
8   "cancel",
9   "disabled",
10   "invalid"
13 [Pref="dom.forms.requestAutocomplete",
14  Constructor(DOMString type, optional AutocompleteErrorEventInit eventInitDict)]
15 interface AutocompleteErrorEvent : Event
17   readonly attribute AutoCompleteErrorReason reason;
20 dictionary AutocompleteErrorEventInit : EventInit
22   AutoCompleteErrorReason reason = "";