Added Page Properties (26889) and Page Colors dialogs (14344), removed debug menu only in release (27237), link dialog fixes (27308), lots of dialog rewrite to use titledbox instead of fieldset, rewrote insert table dialog to use boxes. Changed font size to use CSS strings, not <font size> for ui, but other bugs prevented inserting spans for size. Other small bug fixes. r=brade.

git-svn-id: svn://10.0.0.236/trunk@60891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cmanske%netscape.com
2000-02-15 15:54:05 +00:00
parent 2d4a00d2a7
commit c50b46ff04
37 changed files with 1705 additions and 1261 deletions

View File

@@ -153,13 +153,13 @@ function onOK()
// Create necessary rows and cells for the table
dump("Rows = "+rows+" Columns = "+columns+"\n");
for (i = 0; i < rows; i++)
for (var i = 0; i < rows; i++)
{
var newRow = editorShell.CreateElementWithDefaults("tr");
if (newRow)
{
tableBody.appendChild(newRow);
for (j = 0; j < columns; j++)
for (var j = 0; j < columns; j++)
{
newCell = editorShell.CreateElementWithDefaults("td");
if (newCell)