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 * HTMLOrSVGElement
10 *
11 * @see https://dom.spec.whatwg.org/#interface-htmlorsvgelement
12 *
13 * @property DOMStringMap $dataset
14 * @property string $nonce
15 * @property int $tabIndex
16 * @phan-forbid-undeclared-magic-properties
17 */
18interface HTMLOrSVGElement {
19    /**
20     * @return DOMStringMap
21     */
22    public function getDataset();
23
24    /**
25     * @return string
26     */
27    public function getNonce(): string;
28
29    /**
30     * @param string $val
31     */
32    public function setNonce( string $val ): void;
33
34    /**
35     * @return int
36     */
37    public function getTabIndex(): int;
38
39    /**
40     * @param int $val
41     */
42    public function setTabIndex( int $val ): void;
43
44    /**
45     * @return void
46     */
47    public function blur(): void;
48
49}