fix mwidth for elements with no content.

This commit is contained in:
Christopher Jeffrey 2013-07-29 16:49:44 -05:00
parent 36415f76b6
commit 1a4c0cd761
1 changed files with 1 additions and 0 deletions

View File

@ -2115,6 +2115,7 @@ Element.prototype._wrapContent = function(content, width) {
out.ftor = [[0]];
out.fake = lines;
out.real = out;
out.mwidth = 0;
return out;
}