summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/Tokenizer.php
diff options
context:
space:
mode:
authorTechnosophos <[email protected]>2013-04-11 21:14:22 -0500
committerTechnosophos <[email protected]>2013-04-11 21:14:22 -0500
commit892335b82e3587fbb96ef4ef62bb1edd16ad636f (patch)
tree6738f7ae81c088d8c19f728604d11a492f9f1029 /src/HTML5/Parser/Tokenizer.php
parentf0da96a373b912eb649954d7920a96c6284f9455 (diff)
endTag is done.
Diffstat (limited to 'src/HTML5/Parser/Tokenizer.php')
-rw-r--r--src/HTML5/Parser/Tokenizer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTML5/Parser/Tokenizer.php b/src/HTML5/Parser/Tokenizer.php
index 0eae949..81c4738 100644
--- a/src/HTML5/Parser/Tokenizer.php
+++ b/src/HTML5/Parser/Tokenizer.php
@@ -292,7 +292,7 @@ class Tokenizer {
$name = $this->scanner->charsUntil("\n\f \t>");
// Trash whitespace.
- $this->scanner->charsWhile("\n\f \t");
+ $this->scanner->whitespace();
if ($this->scanner->current() != '>') {
$this->parseError("Expected >, got '%s'", $this->scanner->current());