X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_source/core/htmlparser/comment.js diff --git a/_source/core/htmlparser/comment.js b/_source/core/htmlparser/comment.js deleted file mode 100644 index a55b489..0000000 --- a/_source/core/htmlparser/comment.js +++ /dev/null @@ -1,60 +0,0 @@ -/* -Copyright (c) 2003-2011, 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 ); - } -};