X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fhtmlparser%2Felement.js;h=10109e7481b88c6882f40f1d64398db445dc345a;hp=6ad02648a127af79607c75e46242631bee2f8101;hb=7cd80714081a8ffdf4a1a8d2c72f120ed5ef3d6d;hpb=8761695d9b70afe75905deaac88f78c1f8aeb32d 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;