From d87db43c658228cf49acacf2f7650b797010b81c Mon Sep 17 00:00:00 2001 From: corvid Date: Thu, 5 Sep 2013 19:33:07 +0000 Subject: 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. --- src/html.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/html.cc') 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}, -- cgit v1.2.3