in dojox.editor.plugins.TablePlugins?.js line 972,
onSet: function(){
dojo.attr(this.table, "bordercolor", this.brdColor);
dojo.attr(this.table, "bgcolor", this.bkColor);
dojo.attr(this.table, "width", (this.selectWidth.attr("value") + ((this.selectWidthType.attr("value")=="pixels")?"":"%") ));
dojo.attr(this.table, "border", this.selectBorder.attr("value"));
dojo.attr(this.table, "cellpadding", this.selectPad.attr("value"));
dojo.attr(this.table, "cellspacing", this.selectSpace.attr("value"));
dojo.attr(this.table, "align", this.selectAlign.attr("value"));
this.hide();
},
IE won't recognized the name "bordercolor", "bgcolor", "cellpadding" or "cellspacing". Use "borderColor", "bgColor", "cellPadding" or "cellSpacing" instead which will work work in both IE and FF.
Sounds like this might be worth fixing for 1.3.2