aboutsummaryrefslogtreecommitdiff
path: root/src/html.cc
diff options
context:
space:
mode:
authorcorvid <corvid@dillo.org>2013-09-05 19:46:02 +0000
committercorvid <corvid@dillo.org>2013-09-05 19:46:02 +0000
commit560b9fb24cb4cbba17ce76830514eac34bfb552d (patch)
treea887dda3b4bcadb56ad96f6b1fae7604954298c4 /src/html.cc
parentc04f95a9a48c42bf65e5a4f1d524d34fa65c36f2 (diff)
don't warn about html5 in bug msgs
Diffstat (limited to 'src/html.cc')
-rw-r--r--src/html.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc
index 58c94f81..2fd9244f 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -1619,7 +1619,6 @@ static void Html_parse_doctype(DilloHtml *html, const char *tag, int tagsize)
html->DocTypeVersion = 2.0f;
}
} else if (!dStrAsciiCasecmp(ntag, HTML5_sig)) {
- BUG_MSG("Document follows HTML5 working draft; treating as HTML4.\n");
html->DocType = DT_HTML;
html->DocTypeVersion = 5.0f;
}