2018-10-01 06:37:39 +03:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
2020-02-05 00:28:57 +03:00
|
|
|
[ChromeOnly,
|
2019-09-27 18:26:14 +03:00
|
|
|
Exposed=Window]
|
2018-10-01 06:37:39 +03:00
|
|
|
interface XULTextElement : XULElement {
|
2019-10-17 18:38:39 +03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2018-10-01 06:37:39 +03:00
|
|
|
attribute boolean disabled;
|
|
|
|
attribute DOMString value;
|
2018-10-02 05:15:51 +03:00
|
|
|
attribute DOMString accessKey;
|
2018-10-01 06:37:39 +03:00
|
|
|
};
|