michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsAHtml5TreeBuilderState_h michael@0: #define nsAHtml5TreeBuilderState_h michael@0: michael@0: #include "nsIContentHandle.h" michael@0: michael@0: /** michael@0: * Interface for exposing the internal state of the HTML5 tree builder. michael@0: * For more documentation, please see michael@0: * http://hg.mozilla.org/projects/htmlparser/file/tip/src/nu/validator/htmlparser/impl/StateSnapshot.java michael@0: */ michael@0: class nsAHtml5TreeBuilderState { michael@0: public: michael@0: michael@0: virtual jArray getStack() = 0; michael@0: michael@0: virtual jArray getListOfActiveFormattingElements() = 0; michael@0: michael@0: virtual jArray getTemplateModeStack() = 0; michael@0: michael@0: virtual int32_t getStackLength() = 0; michael@0: michael@0: virtual int32_t getListOfActiveFormattingElementsLength() = 0; michael@0: michael@0: virtual int32_t getTemplateModeStackLength() = 0; michael@0: michael@0: virtual nsIContentHandle* getFormPointer() = 0; michael@0: michael@0: virtual nsIContentHandle* getHeadPointer() = 0; michael@0: michael@0: virtual nsIContentHandle* getDeepTreeSurrogateParent() = 0; michael@0: michael@0: virtual int32_t getMode() = 0; michael@0: michael@0: virtual int32_t getOriginalMode() = 0; michael@0: michael@0: virtual bool isFramesetOk() = 0; michael@0: michael@0: virtual bool isNeedToDropLF() = 0; michael@0: michael@0: virtual bool isQuirks() = 0; michael@0: michael@0: virtual ~nsAHtml5TreeBuilderState() { michael@0: } michael@0: }; michael@0: michael@0: #endif /* nsAHtml5TreeBuilderState_h */