Page MenuHomeWickedGov Phorge

HTMLFieldSetElement.php
No OneTemporary

Size
3 KB
Referenced Files
None
Subscribers
None

HTMLFieldSetElement.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM;
/**
* HTMLFieldSetElement
*
* @see https://dom.spec.whatwg.org/#interface-htmlfieldsetelement
*
* @property int $nodeType
* @property string $nodeName
* @property string $baseURI
* @property bool $isConnected
* @property Document|null $ownerDocument
* @property Node|null $parentNode
* @property Element|null $parentElement
* @property NodeList $childNodes
* @property Node|null $firstChild
* @property Node|null $lastChild
* @property Node|null $previousSibling
* @property Node|null $nextSibling
* @property ?string $nodeValue
* @property ?string $textContent
* @property string $innerHTML
* @property Element|null $previousElementSibling
* @property Element|null $nextElementSibling
* @property HTMLCollection $children
* @property Element|null $firstElementChild
* @property Element|null $lastElementChild
* @property int $childElementCount
* @property HTMLSlotElement|null $assignedSlot
* @property ?string $namespaceURI
* @property ?string $prefix
* @property string $localName
* @property string $tagName
* @property string $id
* @property string $className
* @property DOMTokenList $classList
* @property string $slot
* @property NamedNodeMap $attributes
* @property ShadowRoot|null $shadowRoot
* @property string $outerHTML
* @property CSSStyleDeclaration $style
* @property string $contentEditable
* @property string $enterKeyHint
* @property bool $isContentEditable
* @property string $inputMode
* @property EventHandlerNonNull|callable|null $onload
* @property DOMStringMap $dataset
* @property string $nonce
* @property int $tabIndex
* @property string $title
* @property string $lang
* @property bool $translate
* @property string $dir
* @property bool $hidden
* @property string $accessKey
* @property string $accessKeyLabel
* @property bool $draggable
* @property bool $spellcheck
* @property string $autocapitalize
* @property string $innerText
* @property Element|null $offsetParent
* @property int $offsetTop
* @property int $offsetLeft
* @property int $offsetWidth
* @property int $offsetHeight
* @property bool $disabled
* @property HTMLFormElement|null $form
* @property string $name
* @property string $type
* @property HTMLCollection $elements
* @property bool $willValidate
* @property ValidityState $validity
* @property string $validationMessage
* @phan-forbid-undeclared-magic-properties
*/
interface HTMLFieldSetElement extends HTMLElement {
// Direct parent: HTMLElement
/**
* @return bool
*/
public function getDisabled(): bool;
/**
* @param bool $val
*/
public function setDisabled( bool $val ): void;
/**
* @return HTMLFormElement|null
*/
public function getForm();
/**
* @return string
*/
public function getName(): string;
/**
* @param string $val
*/
public function setName( string $val ): void;
/**
* @return string
*/
public function getType(): string;
/**
* @return HTMLCollection
*/
public function getElements();
/**
* @return bool
*/
public function getWillValidate(): bool;
/**
* @return ValidityState
*/
public function getValidity();
/**
* @return string
*/
public function getValidationMessage(): string;
/**
* @return bool
*/
public function checkValidity(): bool;
/**
* @return bool
*/
public function reportValidity(): bool;
/**
* @param string $error
* @return void
*/
public function setCustomValidity( string $error ): void;
}

File Metadata

Mime Type
text/x-php
Expires
Aug 19 2026, 17:00 (4 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
05/36/d825051d1a6ecdf9dd0412461f92
Default Alt Text
HTMLFieldSetElement.php (3 KB)

Event Timeline