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

b=142442, r=brade, sr=kin
This commit is contained in:
glazman%netscape.com 2002-05-07 08:34:34 +00:00
Родитель 22c610ed1f
Коммит 4d9c036530
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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");
}