diff options
author | corvid <corvid@dillo.org> | 2013-09-05 19:33:07 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2013-09-05 19:33:07 +0000 |
commit | d87db43c658228cf49acacf2f7650b797010b81c (patch) | |
tree | 52c1ebb15dce929f48970ea32673f3e4c5d8c5f3 /src/html.cc | |
parent | 249ddc27f05bc334bc554a692e6b2d541053afb3 (diff) |
html5, don't restrict A to inline ('phrasing') content.
Its content model is 'transparent', meaning that it's supposed to use the
content model of its parent.
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index 03e46607..d695d56e 100644 --- a/src/html.cc +++ b/src/html.cc @@ -3203,7 +3203,7 @@ static void Html_tag_close_par(DilloHtml *html) */ const TagInfo Tags[] = { - {"a", B8(010101),'R',2, Html_tag_open_a, NULL, Html_tag_close_a}, + {"a", B8(011101),'R',2, Html_tag_open_a, NULL, Html_tag_close_a}, {"abbr", B8(010101),'R',2, Html_tag_open_abbr, NULL, NULL}, /* acronym 010101 */ {"address", B8(010110),'R',2,Html_tag_open_default, NULL, Html_tag_close_par}, |