Code: Select all
<!ELEMENT BODY O O (%block;|SCRIPT)+ +(INS|DEL) -- document body -->
<!ATTLIST BODY
%attrs; -- %coreattrs, %i18n, %events --
onload %Script; #IMPLIED -- the document has been loaded --
onunload %Script; #IMPLIED -- the document has been removed --
>Edit -- Hmm.. perhaps this is related?
Code: Select all
<!ELEMENT HEAD O O (%head.content;) +(%head.misc;) -- document head -->Code: Select all
<!ELEMENT HEAD O O (%head.content;|%head.misc;) -- document head -->Code: Select all
<!ELEMENT A - - (%inline;)* -(A) -- anchor -->
...
<!ELEMENT PRE - - (%inline;)* -(%pre.exclusion;) -- preformatted text -->
...
<!ELEMENT FORM - - (%block;|SCRIPT)+ -(FORM) -- interactive form -->
...
<!ELEMENT LABEL - - (%inline;)* -(LABEL) -- form field label text -->
...
<!ELEMENT BUTTON - -
(%flow;)* -(A|%formctrl;|FORM|FIELDSET)
-- push button -->
...
<!ELEMENT TITLE - - (#PCDATA) -(%head.misc;) -- document title -->I'd hate to go about having the wrong idea though. Does this make sense? Can someone confirm it means this?