Fix problem with percentage width being used too many times in HTML-CSS output. Resolves issue #832.

This commit is contained in:
Davide P. Cervone 2014-08-20 09:30:04 -04:00
parent 354e18df87
commit 1cd23252c1

View File

@ -2788,8 +2788,8 @@
span.bbox.lw *= f; span.bbox.rw *= f;
if (math && math.bbox.width != null) {
span.style.minWidth = (math.bbox.minWidth || span.style.width);
span.style.width = stack.style.width = math.bbox.width;
box.style.width = "100%";
span.style.width = math.bbox.width;
box.style.width = stack.style.width = "100%";
}
//
// Add color (if any)