Composer was assigning an invalid value to nowrap attribute on table cells.

b=142442, r=brade, sr=kin


git-svn-id: svn://10.0.0.236/trunk@120924 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
glazman%netscape.com
2002-05-07 08:34:34 +00:00
parent b39de47648
commit c1c14d7c54

View File

@@ -907,7 +907,7 @@ function ValidateCellData()
if (gDialog.TextWrapCheckbox.checked)
{
if (gDialog.TextWrapList.selectedIndex == 1)
globalCellElement.setAttribute("nowrap","true");
globalCellElement.setAttribute("nowrap","nowrap");
else
globalCellElement.removeAttribute("nowrap");
}