Added epilog and prolog to document. Added processing instructions and CDATASections for XML. Completed document Node methods.

git-svn-id: svn://10.0.0.236/trunk@25744 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
vidur%netscape.com
1999-03-31 20:49:25 +00:00
parent bcd7aa96e1
commit fe0a023b26
59 changed files with 2892 additions and 1467 deletions

View File

@@ -46,6 +46,7 @@ nsIAtom* nsLayoutAtoms::floaterList;
// pseudo tag names for non-element content
nsIAtom* nsLayoutAtoms::commentTagName;
nsIAtom* nsLayoutAtoms::textTagName;
nsIAtom* nsLayoutAtoms::processingInstructionTagName;
nsIAtom* nsLayoutAtoms::viewportPseudo;
nsIAtom* nsLayoutAtoms::pagePseudo;
@@ -90,6 +91,7 @@ void nsLayoutAtoms::AddrefAtoms()
commentTagName = NS_NewAtom("__moz_comment");
textTagName = NS_NewAtom("__moz_text");
processingInstructionTagName = NS_NewAtom("__moz_pi");
viewportPseudo = NS_NewAtom(":-moz-viewport");
pagePseudo = NS_NewAtom(":-moz-page");
@@ -135,6 +137,7 @@ void nsLayoutAtoms::ReleaseAtoms()
NS_RELEASE(commentTagName);
NS_RELEASE(textTagName);
NS_RELEASE(processingInstructionTagName);
NS_RELEASE(viewportPseudo);
NS_RELEASE(pagePseudo);