X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fdtd.js;h=f09b7db88dc1e87e2d66a081dc0f5fb9ed73af01;hp=d5af5bfaa3df35c94d82c15846c84a078446d2f3;hb=039a051ccf3901311661022a30afd60fc38130c9;hpb=c9fdde67e6384bd5a66adc2b3bba5c4ce9db56c7 diff --git a/_source/core/dtd.js b/_source/core/dtd.js index d5af5bf..f09b7db 100644 --- a/_source/core/dtd.js +++ b/_source/core/dtd.js @@ -10,16 +10,15 @@ For licensing, see LICENSE.html or http://ckeditor.com/license */ /** - * Holds and object representation of the HTML DTD to be used by the editor in - * its internal operations. - * - * Each element in the DTD is represented by a - * property in this object. Each property contains the list of elements that - * can be contained by the element. Text is represented by the "#" property. - * + * @namespace Holds and object representation of the HTML DTD to be used by the + * editor in its internal operations.
+ *
+ * Each element in the DTD is represented by a property in this object. Each + * property contains the list of elements that can be contained by the element. + * Text is represented by the "#" property.
+ *
* Several special grouping properties are also available. Their names start * with the "$" character. - * @namespace * @example * // Check if "div" can be contained in a "p" element. * alert( !!CKEDITOR.dtd[ 'p' ][ 'div' ] ); "false" @@ -81,8 +80,14 @@ CKEDITOR.dtd = (function() */ $blockLimit : { body:1,div:1,td:1,th:1,caption:1,form:1 }, + /** + * List of inline (<span> like) elements. + */ $inline : L, // Just like span. + /** + * list of elements that can be children at <body>. + */ $body : X({script:1,style:1}, block), $cdata : {script:1,style:1},