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
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * HTMLAnchorElement
10 *
11 * @see https://dom.spec.whatwg.org/#interface-htmlanchorelement
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 $href
72 * @property string $origin
73 * @property string $protocol
74 * @property string $username
75 * @property string $password
76 * @property string $host
77 * @property string $hostname
78 * @property string $port
79 * @property string $pathname
80 * @property string $search
81 * @property string $hash
82 * @property string $referrerPolicy
83 * @property string $target
84 * @property string $download
85 * @property string $ping
86 * @property string $rel
87 * @property DOMTokenList $relList
88 * @property string $hreflang
89 * @property string $type
90 * @property string $text
91 * @property string $coords
92 * @property string $charset
93 * @property string $name
94 * @property string $rev
95 * @property string $shape
96 * @phan-forbid-undeclared-magic-properties
97 */
98interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils, ReferrerPolicy {
99    // Direct parent: HTMLElement
100
101    /**
102     * @return string
103     */
104    public function getTarget(): string;
105
106    /**
107     * @param string $val
108     */
109    public function setTarget( string $val ): void;
110
111    /**
112     * @return string
113     */
114    public function getDownload(): string;
115
116    /**
117     * @param string $val
118     */
119    public function setDownload( string $val ): void;
120
121    /**
122     * @return string
123     */
124    public function getPing(): string;
125
126    /**
127     * @param string $val
128     */
129    public function setPing( string $val ): void;
130
131    /**
132     * @return string
133     */
134    public function getRel(): string;
135
136    /**
137     * @param string $val
138     */
139    public function setRel( string $val ): void;
140
141    /**
142     * @return DOMTokenList
143     */
144    public function getRelList();
145
146    /**
147     * @param string $val
148     */
149    public function setRelList( string $val ): void;
150
151    /**
152     * @return string
153     */
154    public function getHreflang(): string;
155
156    /**
157     * @param string $val
158     */
159    public function setHreflang( string $val ): void;
160
161    /**
162     * @return string
163     */
164    public function getType(): string;
165
166    /**
167     * @param string $val
168     */
169    public function setType( string $val ): void;
170
171    /**
172     * @return string
173     */
174    public function getText(): string;
175
176    /**
177     * @param string $val
178     */
179    public function setText( string $val ): void;
180
181    /**
182     * @return string
183     */
184    public function getCoords(): string;
185
186    /**
187     * @param string $val
188     */
189    public function setCoords( string $val ): void;
190
191    /**
192     * @return string
193     */
194    public function getCharset(): string;
195
196    /**
197     * @param string $val
198     */
199    public function setCharset( string $val ): void;
200
201    /**
202     * @return string
203     */
204    public function getName(): string;
205
206    /**
207     * @param string $val
208     */
209    public function setName( string $val ): void;
210
211    /**
212     * @return string
213     */
214    public function getRev(): string;
215
216    /**
217     * @param string $val
218     */
219    public function setRev( string $val ): void;
220
221    /**
222     * @return string
223     */
224    public function getShape(): string;
225
226    /**
227     * @param string $val
228     */
229    public function setShape( string $val ): void;
230
231}