X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fdocument.js;h=a68ddf5394201c13f289c4f656786042c08b77ec;hp=bd8c18c85953605081e2863cfc7a8fd2e2609b44;hb=614511639979907ceb0da3614122a4d8eb963ad4;hpb=039a051ccf3901311661022a30afd60fc38130c9 diff --git a/_source/core/dom/document.js b/_source/core/dom/document.js index bd8c18c..a68ddf5 100644 --- a/_source/core/dom/document.js +++ b/_source/core/dom/document.js @@ -150,7 +150,7 @@ CKEDITOR.tools.extend( CKEDITOR.dom.document.prototype, getElementsByTag : function( tagName, namespace ) { - if ( !CKEDITOR.env.ie && namespace ) + if ( !( CKEDITOR.env.ie && ! ( document.documentMode > 8 ) ) && namespace ) tagName = namespace + ':' + tagName; return new CKEDITOR.dom.nodeList( this.$.getElementsByTagName( tagName ) ); },