Foo
Living Standard,
COPYRIGHT GOES HERE
Abstract
Testing IDL markup and linking.
enum BarEnum
{ ""
, "bar"
};
interface Foo
{
attribute DOMString foo
;
attribute BarEnum bar
;
attribute DOMString _or
;
Promise<any> get
(int a);
};
Arguments for the Foo.get(a) method.
Parameter
| Type
| Nullable
| Optional
| Description
|
a
| int
| ✘
| ✘
| An argument.
|
Foo
, foo
, or
, _or
Index
Terms defined by this specification
- "", in §Unnumbered section
- "bar", in §Unnumbered section
- bar, in §Unnumbered section
- BarEnum, in §Unnumbered section
- Foo, in §Unnumbered section
- foo, in §Unnumbered section
- get(a), in §Unnumbered section
- or, in §Unnumbered section
Terms defined by reference
References
Normative References
- [WebIDL]
- Boris Zbarsky. Web IDL. 15 December 2016. ED. URL: https://heycam.github.io/webidl/
IDL Index
enum BarEnum
{ ""
, "bar"
};
interface Foo
{
attribute DOMString foo
;
attribute BarEnum bar
;
attribute DOMString _or
;
Promise<any> get
(int a);
};