summaryrefslogtreecommitdiff
path: root/test/HTML5/Parser/EventStack.php
diff options
context:
space:
mode:
authorTechnosophos <[email protected]>2013-04-15 17:47:58 -0500
committerTechnosophos <[email protected]>2013-04-15 17:47:58 -0500
commit391e4f31e3f0e7935a46431783896153156a65eb (patch)
tree8bef74cc8df6ffb6561a31b2a8fbfb2953346726 /test/HTML5/Parser/EventStack.php
parent34718c58884fe5e7d645e4bf12d9c39d77cc8b4d (diff)
Unit tests for DOCTYPE are all passing.
Diffstat (limited to 'test/HTML5/Parser/EventStack.php')
-rw-r--r--test/HTML5/Parser/EventStack.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/HTML5/Parser/EventStack.php b/test/HTML5/Parser/EventStack.php
index 24bd144..e865507 100644
--- a/test/HTML5/Parser/EventStack.php
+++ b/test/HTML5/Parser/EventStack.php
@@ -35,7 +35,7 @@ class EventStack implements EventHandler {
}
public function doctype($name, $type = 0, $id = NULL, $quirks = FALSE) {
- $args = func_get_args();
+ $args = array($name, $type, $id, $quirks);
$this->store('doctype', $args);
}