X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fhtmlparser%2Fcomment.js;fp=_source%2Fcore%2Fhtmlparser%2Fcomment.js;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=4ca896db71d920fc11b4b9fa493a45977e90a457;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_source/core/htmlparser/comment.js b/_source/core/htmlparser/comment.js deleted file mode 100644 index 4ca896d..0000000 --- a/_source/core/htmlparser/comment.js +++ /dev/null @@ -1,60 +0,0 @@ -/* -Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -/** - * A lightweight representation of an HTML comment. - * @constructor - * @example - */ -CKEDITOR.htmlParser.comment = function( value ) -{ - /** - * The comment text. - * @type String - * @example - */ - this.value = value; - - /** @private */ - this._ = - { - isBlockLike : false - }; -}; - -CKEDITOR.htmlParser.comment.prototype = -{ - /** - * The node type. This is a constant value set to {@link CKEDITOR.NODE_COMMENT}. - * @type Number - * @example - */ - type : CKEDITOR.NODE_COMMENT, - - /** - * Writes the HTML representation of this comment to a CKEDITOR.htmlWriter. - * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML. - * @example - */ - writeHtml : function( writer, filter ) - { - var comment = this.value; - - if ( filter ) - { - if ( !( comment = filter.onComment( comment, this ) ) ) - return; - - if ( typeof comment != 'string' ) - { - comment.parent = this.parent; - comment.writeHtml( writer, filter ); - return; - } - } - - writer.comment( comment ); - } -};