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 * HTMLAreaElement
10 *
11 * @see https://dom.spec.whatwg.org/#interface-htmlareaelement
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 $alt
84 * @property string $coords
85 * @property string $shape
86 * @property string $target
87 * @property string $rel
88 * @property DOMTokenList $relList
89 * @property bool $noHref
90 * @phan-forbid-undeclared-magic-properties
91 */
92interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils, ReferrerPolicy {
93    // Direct parent: HTMLElement
94
95    /**
96     * @return string
97     */
98    public function getAlt(): string;
99
100    /**
101     * @param string $val
102     */
103    public function setAlt( string $val ): void;
104
105    /**
106     * @return string
107     */
108    public function getCoords(): string;
109
110    /**
111     * @param string $val
112     */
113    public function setCoords( string $val ): void;
114
115    /**
116     * @return string
117     */
118    public function getShape(): string;
119
120    /**
121     * @param string $val
122     */
123    public function setShape( string $val ): void;
124
125    /**
126     * @return string
127     */
128    public function getTarget(): string;
129
130    /**
131     * @param string $val
132     */
133    public function setTarget( string $val ): void;
134
135    /**
136     * @return string
137     */
138    public function getRel(): string;
139
140    /**
141     * @param string $val
142     */
143    public function setRel( string $val ): void;
144
145    /**
146     * @return DOMTokenList
147     */
148    public function getRelList();
149
150    /**
151     * @param string $val
152     */
153    public function setRelList( string $val ): void;
154
155    /**
156     * @return bool
157     */
158    public function getNoHref(): bool;
159
160    /**
161     * @param bool $val
162     */
163    public function setNoHref( bool $val ): void;
164
165}