| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/phpgt/dom/src/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor/phpgt/dom/src/NonDocumentTypeChildNode.php |
<?php
namespace Gt\Dom;
/**
* The NonDocumentTypeChildNode interface contains methods that are particular
* to Node objects that can have a parent, but not suitable for DocumentType.
*
* NonDocumentTypeChildNode is a raw interface and no object of this type can
* be created; it is implemented by Element, and CharacterData objects.
*
* @link https://developer.mozilla.org/en-US/docs/Web/API/NonDocumentTypeChildNode
* @link https://dom.spec.whatwg.org/#interface-nondocumenttypechildnode
*
* @property-read ?Element $nextElementSibling Is an Element, the element immediately following the given one in the tree, or null if there's no sibling node.
* @property-read ?Element $previousElementSibling Is a Element, the element immediately preceding the given one in the tree, or null if there is no sibling element.
*/
trait NonDocumentTypeChildNode {
}