Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | // AUTOMATICALLY GENERATED. DO NOT EDIT. |
4 | // Use `composer build` to regenerate. |
5 | |
6 | namespace Wikimedia\IDLeDOM; |
7 | |
8 | /** |
9 | * HTMLLinkElement |
10 | * |
11 | * @see https://dom.spec.whatwg.org/#interface-htmllinkelement |
12 | * |
13 | * @property int $nodeType |
14 | * @property string $nodeName |
15 | * @property string $baseURI |
16 | * @property bool $isConnected |
17 | * @property Document|null $ownerDocument |
18 | * @property Node|null $parentNode |
19 | * @property Element|null $parentElement |
20 | * @property NodeList $childNodes |
21 | * @property Node|null $firstChild |
22 | * @property Node|null $lastChild |
23 | * @property Node|null $previousSibling |
24 | * @property Node|null $nextSibling |
25 | * @property ?string $nodeValue |
26 | * @property ?string $textContent |
27 | * @property string $innerHTML |
28 | * @property Element|null $previousElementSibling |
29 | * @property Element|null $nextElementSibling |
30 | * @property HTMLCollection $children |
31 | * @property Element|null $firstElementChild |
32 | * @property Element|null $lastElementChild |
33 | * @property int $childElementCount |
34 | * @property HTMLSlotElement|null $assignedSlot |
35 | * @property ?string $namespaceURI |
36 | * @property ?string $prefix |
37 | * @property string $localName |
38 | * @property string $tagName |
39 | * @property string $id |
40 | * @property string $className |
41 | * @property DOMTokenList $classList |
42 | * @property string $slot |
43 | * @property NamedNodeMap $attributes |
44 | * @property ShadowRoot|null $shadowRoot |
45 | * @property string $outerHTML |
46 | * @property CSSStyleDeclaration $style |
47 | * @property string $contentEditable |
48 | * @property string $enterKeyHint |
49 | * @property bool $isContentEditable |
50 | * @property string $inputMode |
51 | * @property EventHandlerNonNull|callable|null $onload |
52 | * @property DOMStringMap $dataset |
53 | * @property string $nonce |
54 | * @property int $tabIndex |
55 | * @property string $title |
56 | * @property string $lang |
57 | * @property bool $translate |
58 | * @property string $dir |
59 | * @property bool $hidden |
60 | * @property string $accessKey |
61 | * @property string $accessKeyLabel |
62 | * @property bool $draggable |
63 | * @property bool $spellcheck |
64 | * @property string $autocapitalize |
65 | * @property string $innerText |
66 | * @property Element|null $offsetParent |
67 | * @property int $offsetTop |
68 | * @property int $offsetLeft |
69 | * @property int $offsetWidth |
70 | * @property int $offsetHeight |
71 | * @property ?string $crossOrigin |
72 | * @property CSSStyleSheet|null $sheet |
73 | * @property string $referrerPolicy |
74 | * @property string $href |
75 | * @property string $rel |
76 | * @property string $as |
77 | * @property DOMTokenList $relList |
78 | * @property string $media |
79 | * @property string $hreflang |
80 | * @property string $type |
81 | * @property DOMTokenList $sizes |
82 | * @property string $charset |
83 | * @property string $rev |
84 | * @property string $target |
85 | * @phan-forbid-undeclared-magic-properties |
86 | */ |
87 | interface HTMLLinkElement extends HTMLElement, CrossOrigin, LinkStyle, ReferrerPolicy { |
88 | // Direct parent: HTMLElement |
89 | |
90 | /** |
91 | * @return string |
92 | */ |
93 | public function getHref(): string; |
94 | |
95 | /** |
96 | * @param string $val |
97 | */ |
98 | public function setHref( string $val ): void; |
99 | |
100 | /** |
101 | * @return string |
102 | */ |
103 | public function getRel(): string; |
104 | |
105 | /** |
106 | * @param string $val |
107 | */ |
108 | public function setRel( string $val ): void; |
109 | |
110 | /** |
111 | * @return string |
112 | */ |
113 | public function getAs(): string; |
114 | |
115 | /** |
116 | * @param string $val |
117 | */ |
118 | public function setAs( string $val ): void; |
119 | |
120 | /** |
121 | * @return DOMTokenList |
122 | */ |
123 | public function getRelList(); |
124 | |
125 | /** |
126 | * @param string $val |
127 | */ |
128 | public function setRelList( string $val ): void; |
129 | |
130 | /** |
131 | * @return string |
132 | */ |
133 | public function getMedia(): string; |
134 | |
135 | /** |
136 | * @param string $val |
137 | */ |
138 | public function setMedia( string $val ): void; |
139 | |
140 | /** |
141 | * @return string |
142 | */ |
143 | public function getHreflang(): string; |
144 | |
145 | /** |
146 | * @param string $val |
147 | */ |
148 | public function setHreflang( string $val ): void; |
149 | |
150 | /** |
151 | * @return string |
152 | */ |
153 | public function getType(): string; |
154 | |
155 | /** |
156 | * @param string $val |
157 | */ |
158 | public function setType( string $val ): void; |
159 | |
160 | /** |
161 | * @return DOMTokenList |
162 | */ |
163 | public function getSizes(); |
164 | |
165 | /** |
166 | * @param string $val |
167 | */ |
168 | public function setSizes( string $val ): void; |
169 | |
170 | /** |
171 | * @return string |
172 | */ |
173 | public function getCharset(): string; |
174 | |
175 | /** |
176 | * @param string $val |
177 | */ |
178 | public function setCharset( string $val ): void; |
179 | |
180 | /** |
181 | * @return string |
182 | */ |
183 | public function getRev(): string; |
184 | |
185 | /** |
186 | * @param string $val |
187 | */ |
188 | public function setRev( string $val ): void; |
189 | |
190 | /** |
191 | * @return string |
192 | */ |
193 | public function getTarget(): string; |
194 | |
195 | /** |
196 | * @param string $val |
197 | */ |
198 | public function setTarget( string $val ): void; |
199 | |
200 | } |