diff options
author | corvid <corvid@dillo.org> | 2013-09-05 19:46:02 +0000 |
---|---|---|
committer | corvid <corvid@dillo.org> | 2013-09-05 19:46:02 +0000 |
commit | 560b9fb24cb4cbba17ce76830514eac34bfb552d (patch) | |
tree | a887dda3b4bcadb56ad96f6b1fae7604954298c4 | |
parent | c04f95a9a48c42bf65e5a4f1d524d34fa65c36f2 (diff) |
don't warn about html5 in bug msgs
-rw-r--r-- | src/html.cc | 1 |
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; } |