Index: dojo-release-1.3.2-src/dijit/_editor/RichText.js =================================================================== --- dojo-release-1.3.2-src.orig/dijit/_editor/RichText.js 2009-11-18 12:08:50.000000000 -0800 +++ dojo-release-1.3.2-src/dijit/_editor/RichText.js 2009-11-18 12:09:51.000000000 -0800 @@ -868,22 +868,6 @@ e.charCode = e.keyCode; this.onKeyPress(e); } - }else if(dojo.isMoz && !this.isTabIndent){ - if(e.keyCode == dojo.keys.TAB && !e.shiftKey && !e.ctrlKey && !e.altKey && this.iframe){ - // update iframe document title for screen reader - var titleObj = dojo.isFF<3 ? this.iframe.contentDocument : this.iframe; - titleObj.title = this._localizedIframeTitles.iframeFocusTitle; - // Place focus on the iframe. A subsequent tab or shift tab will put focus - // on the correct control. - this.iframe.focus(); // this.focus(); won't work - dojo.stopEvent(e); - }else if(e.keyCode == dojo.keys.TAB && e.shiftKey){ - // if there is a toolbar, set focus to it, otherwise ignore - if(this.toolbar){ - this.toolbar.focus(); - } - dojo.stopEvent(e); - } } return true; },