Skip to content

Commit

Permalink
the new picture element is phrasing content
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 9, 2014
1 parent 2eb6f1c commit 3e264f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Changes
@@ -1,5 +1,6 @@

5.13 2014-07-07
5.13 2014-07-09
- Improved HTML5.1 compliance of Mojo::DOM::HTML.
- Fixed Mojo::Reactor::Poll bug where watchers were active after they have
been removed. (jberger)

Expand Down
6 changes: 3 additions & 3 deletions lib/Mojo/DOM/HTML.pm
Expand Up @@ -84,9 +84,9 @@ my %EMPTY = map { $_ => 1 } (
my @PHRASING = (
qw(a abbr area audio b bdi bdo br button canvas cite code data datalist),
qw(del dfn em embed i iframe img input ins kbd keygen label link map mark),
qw(math meta meter noscript object output progress q ruby s samp script),
qw(select small span strong sub sup svg template textarea time u var video),
qw(wbr)
qw(math meta meter noscript object output picture progress q ruby s samp),
qw(script select small span strong sub sup svg template textarea time u),
qw(var video wbr)
);
my @OBSOLETE = qw(acronym applet basefont big font strike tt);
my %PHRASING = map { $_ => 1 } @OBSOLETE, @PHRASING;
Expand Down

0 comments on commit 3e264f8

Please sign in to comment.