Bug fix 2749 - Tweaked comment handling in quirks mode.

Bug fix 15992 - Line breaks within script and style were not getting counted
Related to bug 15423 - Rectified a glitch in Nav. DTD code where a doctype tag
                                         was opening up a body.
Userdefined tags are now treated as containers.
Added Kipp's Leaky Tool

r=pollmann.


git-svn-id: svn://10.0.0.236/trunk@50722 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
1999-10-14 23:37:21 +00:00
parent 75a2c4fce1
commit 1cd0327569
16 changed files with 154 additions and 40 deletions

View File

@@ -30,6 +30,7 @@
#include "nsToken.h"
#include "nsIParser.h"
MOZ_DECL_CTOR_COUNTER(CTokenHandler);
/**
*
@@ -39,6 +40,9 @@
* @return
*/
CTokenHandler::CTokenHandler(dispatchFP aFP,PRInt32 aType){
MOZ_COUNT_CTOR(CTokenHandler);
mType=aType;
mFP=aFP;
}
@@ -52,6 +56,7 @@ CTokenHandler::CTokenHandler(dispatchFP aFP,PRInt32 aType){
* @return
*/
CTokenHandler::~CTokenHandler(){
MOZ_COUNT_DTOR(CTokenHandler);
}