forked from devpunks/snuggsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.idl
40 lines (33 loc) · 1.28 KB
/
index.idl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Web IDL
// https://heycam.github.io/webidl
// https://trac.webkit.org/browser/webkit/trunk/Source/WebCore/html/HTMLLinkElement.idl
// destinations (as)
// https://github.com/w3c/preload/issues/80
// https://github.com/whatwg/fetch/pull/547
// https://github.com/whatwg/html/pull/2588
// w3c/preload
// https://github.com/w3c/preload/pull/91
// https://github.com/w3c/preload
// https://github.com/whatwg/fetch/pull/442
[
ExportMacro=WEBCORE_EXPORT,
JSGenerateToNativeObject,
] interface HTMLLinkElement : HTMLElement {
attribute DOMString as;
[Reflect] attribute DOMString media;
[Reflect, URL] attribute USVString href;
// [Reflect] attribute boolean disabled;
// [Reflect] attribute DOMString charset;
// [Reflect] attribute DOMString hreflang;
// [Reflect] attribute DOMString rel;
// [Reflect] attribute DOMString rev;
// [PutForwards=value] readonly attribute DOMTokenList sizes;
// [Reflect] attribute DOMString target;
// [Reflect] attribute DOMString type;
// attribute DOMString? crossOrigin;
// // DOM Level 2 Style
// readonly attribute StyleSheet sheet;
// [PutForwards=value] readonly attribute DOMTokenList relList;
// [Reflect] attribute DOMString nonce;
// [Reflect, EnabledBySetting=SubresourceIntegrity] attribute DOMString integrity;
};