We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2309028 commit 4429d49Copy full SHA for 4429d49
lib/HTML/HeadParser.pm
@@ -175,7 +175,7 @@ sub flush_text # internal
175
# <!ENTITY % head.content "TITLE & BASE?">
176
# <!ELEMENT HEAD O O (%head.content;) +(%head.misc;)>
177
#
178
-# Added in HTML 5: noscript, eventsource, command
+# Added in HTML 5 as of WD-html5-20090423: noscript, command
179
180
sub start
181
{
@@ -203,7 +203,7 @@ sub start
203
# This is a non-standard header. Perhaps we should just ignore
204
# this element
205
$self->{'header'}->push_header(Isindex => $attr->{prompt} || '?');
206
- } elsif ($tag =~ /^(?:title|noscript|object|eventsource|command)$/) {
+ } elsif ($tag =~ /^(?:title|noscript|object|command)$/) {
207
# Just remember tag. Initialize header when we see the end tag.
208
$self->{'tag'} = $tag;
209
} elsif ($tag eq 'link') {
0 commit comments