Bug 700260 - Honor the view_source.tab_size pref in a way that actually works. r=smaug.

This commit is contained in:
Henri Sivonen
2011-11-07 21:20:14 +02:00
parent ac317d88c1
commit 973df6c80d
4 changed files with 8 additions and 1 deletions

View File

@@ -152,7 +152,7 @@ nsHtml5Highlighter::Start()
if (mTabSize > 0) {
nsString* style = new nsString(NS_LITERAL_STRING("-moz-tab-size: "));
style->AppendInt(mTabSize);
bodyAttrs->addAttribute(nsHtml5AttributeName::ATTR_CLASS, style);
bodyAttrs->addAttribute(nsHtml5AttributeName::ATTR_STYLE, style);
}
Push(nsGkAtoms::body, bodyAttrs);