Skip to content

Commit 74e89ce

Browse files
committed
html-writer: explicitly set white bg color for <body>
Fedora 22 Firefox would otherwise paint it gray.
1 parent 0d57208 commit 74e89ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html-writer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace HtmlLib {
5555
'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'>\n\
5656
<html xmlns='http://www.w3.org/1999/xhtml'>\n\
5757
<head><title>" << title << "</title></head>\n\
58-
<body>\n<h1>" << title << "</h1>\n";
58+
<body style='background: white;'>\n<h1>" << title << "</h1>\n";
5959
}
6060

6161
void writeLink(

0 commit comments

Comments
 (0)