From c1c14d7c54854f04970ddc8f25da9e191eb74229 Mon Sep 17 00:00:00 2001 From: "glazman%netscape.com" Date: Tue, 7 May 2002 08:34:34 +0000 Subject: [PATCH] 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 --- mozilla/editor/ui/dialogs/content/EdTableProps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/editor/ui/dialogs/content/EdTableProps.js b/mozilla/editor/ui/dialogs/content/EdTableProps.js index a7762b9a5ba..636fb31a2be 100644 --- a/mozilla/editor/ui/dialogs/content/EdTableProps.js +++ b/mozilla/editor/ui/dialogs/content/EdTableProps.js @@ -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"); }