422f603eb30ad7d9fb2a82ff8c45e7f1c58839cd
2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.html or http://ckeditor.com/license
10 * A lightweight representation of HTML text.
14 CKEDITOR
.htmlParser
.cdata = function( value
)
24 CKEDITOR
.htmlParser
.cdata
.prototype =
27 * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is
28 * a constant value set to {@link CKEDITOR.NODE_TEXT}.
32 type
: CKEDITOR
.NODE_TEXT
,
35 * Writes write the CDATA with no special manipulations.
36 * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
38 writeHtml : function( writer
)
40 writer
.write( this.value
);