X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fhtmlparser%2Felement.js;h=10109e7481b88c6882f40f1d64398db445dc345a;hb=refs%2Ftags%2Fv3.0.2;hp=6ad02648a127af79607c75e46242631bee2f8101;hpb=8761695d9b70afe75905deaac88f78c1f8aeb32d;p=ckeditor.git diff --git a/_source/core/htmlparser/element.js b/_source/core/htmlparser/element.js index 6ad0264..10109e7 100644 --- a/_source/core/htmlparser/element.js +++ b/_source/core/htmlparser/element.js @@ -35,7 +35,7 @@ CKEDITOR.htmlParser.element = function( name, attributes ) this.children = []; var dtd = CKEDITOR.dtd, - isBlockLike = !!( dtd.$block[ name ] || dtd.$listItem[ name ] || dtd.$tableContent[ name ] ), + isBlockLike = !!( dtd.$block[ name ] || dtd.$listItem[ name ] || dtd.$tableContent[ name ] || dtd.$nonEditable[ name ] || name == 'br' ), isEmpty = !!dtd.$empty[ name ]; this.isEmpty = isEmpty;