Index: typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (révision 7925) +++ typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js (copie de travail) @@ -893,11 +893,11 @@ // All browsers if (!iframe || (!iframe.contentWindow && !iframe.contentDocument)) { this.initializeIframe.defer(50, this); - // All except Safari + // All except WebKit } else if (iframe.contentWindow && !Ext.isWebKit && (!iframe.contentWindow.document || !iframe.contentWindow.document.documentElement)) { this.initializeIframe.defer(50, this); - // Safari - } else if (!iframe.contentDocument.documentElement || !iframe.contentDocument.body) { + // WebKit + } else if (Ext.isWebKit && (!iframe.contentDocument.documentElement || !iframe.contentDocument.body)) { this.initializeIframe.defer(50, this); } else { this.document = iframe.contentWindow ? iframe.contentWindow.document : iframe.contentDocument; Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/default-image.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/default-image.js (révision 7925) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/DefaultImage/default-image.js (copie de travail) @@ -312,7 +312,7 @@ ] }), hidden: this.removeItems.test('align'), - hideLabel: this.removeItems.test('align'), + hideLabel: this.removeItems.test('align') }, this.configDefaults['combo']) ,{ itemId: 'border', Index: typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js =================================================================== --- typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (révision 7925) +++ typo3/sysext/rtehtmlarea/htmlarea/plugins/TableOperations/table-operations.js (copie de travail) @@ -1896,7 +1896,7 @@ autoDestroy: true, fields: [ { name: 'text'}, { name: 'value'}, { name: 'style'} ], data: [[this.localize('No block style'), 'none']] - }), + }) }, { tpl: '
{text}
' }, this.configDefaults['combo']