51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
namespace dW\HTML5\DOM;
|
||
|
|
||
|
class Document extends \DOMDocument {
|
||
|
use Printer;
|
||
|
|
||
|
public function __construct() {
|
||
|
parent::__construct();
|
||
|
|
||
|
$this->registerNodeClass('DOMComment', '\dW\HTML5\DOM\Comment');
|
||
|
$this->registerNodeClass('DOMElement', '\dW\HTML5\DOM\Element');
|
||
|
$this->registerNodeClass('DOMText', '\dW\HTML5\DOM\Text');
|
||
|
}
|
||
|
|
||
|
public function fixIdAttributes() {
|
||
|
// TODO: Accept DOMDocumentFragment, append it to a document, fix shit, and
|
||
|
// then poop out a fragment so selecting id attributes works on fragments.
|
||
|
|
||
|
// Fix id attributes so they may be selected by the DOM. Fix the PHP id attribute
|
||
|
// bug. Allows DOMDocument->getElementById() to work on id attributes.
|
||
|
$this->relaxNGValidateSource('<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
||
|
<start>
|
||
|
<element>
|
||
|
<anyName/>
|
||
|
<ref name="anythingID"/>
|
||
|
</element>
|
||
|
</start>
|
||
|
<define name="anythingID">
|
||
|
<zeroOrMore>
|
||
|
<choice>
|
||
|
<element>
|
||
|
<anyName/>
|
||
|
<ref name="anythingID"/>
|
||
|
</element>
|
||
|
<attribute name="id"><data type="ID"/></attribute>
|
||
|
<zeroOrMore><attribute><anyName/></attribute></zeroOrMore>
|
||
|
<text/>
|
||
|
</choice>
|
||
|
</zeroOrMore>
|
||
|
</define>
|
||
|
</grammar>');
|
||
|
|
||
|
$this->normalize();
|
||
|
}
|
||
|
|
||
|
public function load($source, $options = null) {}
|
||
|
public function loadHTML($source, $options = null) {}
|
||
|
public function loadXML($source, $options = null) {}
|
||
|
}
|