summaryrefslogtreecommitdiff
path: root/test/HTML5
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5')
-rw-r--r--test/HTML5/ElementsTest.php4
-rw-r--r--test/HTML5/Parser/DOMTreeBuilderTest.php4
2 files changed, 6 insertions, 2 deletions
diff --git a/test/HTML5/ElementsTest.php b/test/HTML5/ElementsTest.php
index df8d336..b6c945b 100644
--- a/test/HTML5/ElementsTest.php
+++ b/test/HTML5/ElementsTest.php
@@ -343,12 +343,12 @@ class ElementsTest extends TestCase {
);
foreach ($unaryElements as $element) {
- $this->assertTrue(Elements::isA($element, Elements::UNARY_TAG), 'Unary test failed on: ' . $element);
+ $this->assertTrue(Elements::isA($element, Elements::VOID_TAG), 'Unary test failed on: ' . $element);
}
$nonUnary = array('span', 'a', 'div');
foreach ($nonUnary as $tag) {
- $this->assertFalse(Elements::isA($tag, Elements::UNARY_TAG), 'Unary test failed on: ' . $tag);
+ $this->assertFalse(Elements::isA($tag, Elements::VOID_TAG), 'Unary test failed on: ' . $tag);
}
diff --git a/test/HTML5/Parser/DOMTreeBuilderTest.php b/test/HTML5/Parser/DOMTreeBuilderTest.php
index 53d1480..3620a89 100644
--- a/test/HTML5/Parser/DOMTreeBuilderTest.php
+++ b/test/HTML5/Parser/DOMTreeBuilderTest.php
@@ -164,6 +164,10 @@ class DOMTreeBuilderTest extends \HTML5\Tests\TestCase {
$this->assertEquals('figure', $p->nextSibling->tagName);
}
+ public function testAutocloseLI() {
+ $this->markTestIncomplete("Incomplete.");
+ }
+
public function testMathML() {
$this->markTestIncomplete("Incomplete.");
}