Addresses #973, citation editor broken in FF3

This commit is contained in:
Dan Stillman 2008-04-19 21:19:56 +00:00
parent 1cd19923e9
commit c4bc2c144c

View File

@ -181,7 +181,10 @@
this._styleWithCSS = true;
}
this._browser.contentDocument.execCommand("styleWithCSS", false, this._styleWithCSS);
try {
this._browser.contentDocument.execCommand("styleWithCSS", false, this._styleWithCSS);
}
catch (e) {}
}
return val;
]]></setter>