summaryrefslogtreecommitdiff
path: root/src/HTML5/Parser/DOMTreeBuilder.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/HTML5/Parser/DOMTreeBuilder.php')
-rw-r--r--src/HTML5/Parser/DOMTreeBuilder.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/HTML5/Parser/DOMTreeBuilder.php b/src/HTML5/Parser/DOMTreeBuilder.php
index 365bb75..f01cf4d 100644
--- a/src/HTML5/Parser/DOMTreeBuilder.php
+++ b/src/HTML5/Parser/DOMTreeBuilder.php
@@ -626,19 +626,18 @@ class DOMTreeBuilder implements EventHandler
/**
* Apply normalization rules to a tag name.
- *
* See sections 2.9 and 8.1.2.
*
- * @param string $name The tag name
+ * @param string $tagName
*
- * @return string the normalized tag name
+ * @return string The normalized tag name.
*/
- protected function normalizeTagName($name)
+ protected function normalizeTagName($tagName)
{
/*
* Section 2.9 suggests that we should not do this. if (strpos($name, ':') !== false) { // We know from the grammar that there must be at least one other // char besides :, since : is not a legal tag start. $parts = explode(':', $name); return array_pop($parts); }
*/
- return $name;
+ return $tagName;
}
protected function quirksTreeResolver($name)