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 * XMLDocument
10 *
11 * @see https://dom.spec.whatwg.org/#interface-xmldocument
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 StyleSheetList $styleSheets
28 * @property EventHandlerNonNull|callable|null $onload
29 * @property HTMLCollection $children
30 * @property Element|null $firstElementChild
31 * @property Element|null $lastElementChild
32 * @property int $childElementCount
33 * @property DOMImplementation $implementation
34 * @property string $URL
35 * @property string $documentURI
36 * @property string $compatMode
37 * @property string $characterSet
38 * @property string $charset
39 * @property string $inputEncoding
40 * @property string $contentType
41 * @property DocumentType|null $doctype
42 * @property Element|null $documentElement
43 * @property Location|null $location
44 * @property string $referrer
45 * @property string $cookie
46 * @property string $lastModified
47 * @property string $title
48 * @property string $dir
49 * @property HTMLElement|null $body
50 * @property HTMLHeadElement|null $head
51 * @property HTMLCollection $images
52 * @property HTMLCollection $embeds
53 * @property HTMLCollection $plugins
54 * @property HTMLCollection $links
55 * @property HTMLCollection $forms
56 * @property HTMLCollection $scripts
57 * @property HTMLScriptElement|null $currentScript
58 * @property EventHandlerNonNull|callable|null $onreadystatechange
59 * @property HTMLCollection $anchors
60 * @property HTMLCollection $applets
61 * @property bool $hidden
62 * @property string $visibilityState
63 * @property EventHandlerNonNull|callable|null $onvisibilitychange
64 * @property string $encoding
65 * @property bool $preserveWhiteSpace
66 * @property bool $formatOutput
67 * @property bool $validateOnParse
68 * @property bool $strictErrorChecking
69 * @phan-forbid-undeclared-magic-properties
70 */
71interface XMLDocument extends Document {
72    // Direct parent: Document
73
74}