1999-01-26 04:24:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-01-26 04:24:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MODULE NOTES:
|
|
|
|
* @update gess 4/1/98
|
|
|
|
*
|
|
|
|
*/
|
1999-01-09 04:09:02 +03:00
|
|
|
|
1999-01-20 09:56:07 +03:00
|
|
|
|
1999-01-26 04:24:31 +03:00
|
|
|
|
|
|
|
#ifndef _NSELEMENTABLE
|
|
|
|
#define _NSELEMENTABLE
|
|
|
|
|
2013-08-12 19:28:41 +04:00
|
|
|
#include "nsHTMLTags.h"
|
|
|
|
#include "nsIDTD.h"
|
1999-01-09 04:09:02 +03:00
|
|
|
|
1999-12-21 10:53:20 +03:00
|
|
|
//*********************************************************************************************
|
|
|
|
// The following ints define the standard groups of HTML elements...
|
|
|
|
//*********************************************************************************************
|
|
|
|
|
|
|
|
static const int kNone= 0x0;
|
|
|
|
|
|
|
|
static const int kHTMLContent = 0x0001; // HEAD, (FRAMESET | BODY)
|
2005-03-18 02:28:35 +03:00
|
|
|
static const int kHeadContent = 0x0002; // Elements that *must* be in the head.
|
|
|
|
static const int kHeadMisc = 0x0004; // Elements that *can* be in the head.
|
1999-12-21 10:53:20 +03:00
|
|
|
|
|
|
|
static const int kSpecial = 0x0008; // A, IMG, APPLET, OBJECT, FONT, BASEFONT, BR, SCRIPT,
|
|
|
|
// MAP, Q, SUB, SUP, SPAN, BDO, IFRAME
|
|
|
|
|
|
|
|
static const int kFormControl = 0x0010; // INPUT SELECT TEXTAREA LABEL BUTTON
|
|
|
|
static const int kPreformatted = 0x0020; // PRE
|
|
|
|
static const int kPreExclusion = 0x0040; // IMG, OBJECT, APPLET, BIG, SMALL, SUB, SUP, FONT, BASEFONT
|
2013-04-14 14:11:09 +04:00
|
|
|
static const int kFontStyle = 0x0080; // TT, I, B, U, S, STRIKE, BIG, SMALL
|
1999-12-21 10:53:20 +03:00
|
|
|
static const int kPhrase = 0x0100; // EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ABBR, ACRONYM
|
|
|
|
static const int kHeading = 0x0200; // H1..H6
|
|
|
|
static const int kBlockMisc = 0x0400; // OBJECT, SCRIPT
|
|
|
|
static const int kBlock = 0x0800; // ADDRESS, BLOCKQUOTE, CENTER, DIV, DL, FIELDSET, FORM,
|
|
|
|
// ISINDEX, HR, NOSCRIPT, NOFRAMES, P, TABLE
|
|
|
|
static const int kList = 0x1000; // UL, OL, DIR, MENU
|
2000-08-10 02:28:41 +04:00
|
|
|
static const int kPCDATA = 0x2000; // plain text and entities...
|
1999-12-21 10:53:20 +03:00
|
|
|
static const int kSelf = 0x4000; // whatever THIS tag is...
|
|
|
|
static const int kExtensions = 0x8000; // BGSOUND, WBR, NOBR
|
|
|
|
static const int kTable = 0x10000;// TR,TD,THEAD,TBODY,TFOOT,CAPTION,TH
|
|
|
|
static const int kDLChild = 0x20000;// DL, DT
|
2000-08-10 02:28:41 +04:00
|
|
|
static const int kCDATA = 0x40000;// just plain text...
|
1999-12-21 10:53:20 +03:00
|
|
|
|
|
|
|
static const int kInlineEntity = (kPCDATA|kFontStyle|kPhrase|kSpecial|kFormControl|kExtensions); // #PCDATA, %fontstyle, %phrase, %special, %formctrl
|
|
|
|
static const int kBlockEntity = (kHeading|kList|kPreformatted|kBlock); // %heading, %list, %preformatted, %block
|
|
|
|
static const int kFlowEntity = (kBlockEntity|kInlineEntity); // %blockentity, %inlineentity
|
|
|
|
static const int kAllTags = 0xffffff;
|
|
|
|
|
1999-10-05 08:54:53 +04:00
|
|
|
|
1999-01-20 09:56:07 +03:00
|
|
|
//*********************************************************************************************
|
|
|
|
// The following ints define the standard groups of HTML elements...
|
|
|
|
//*********************************************************************************************
|
|
|
|
|
2012-06-25 23:59:42 +04:00
|
|
|
#ifdef DEBUG
|
2005-03-21 03:45:02 +03:00
|
|
|
extern void CheckElementTable();
|
|
|
|
#endif
|
1999-12-21 10:53:20 +03:00
|
|
|
|
2001-01-08 06:37:15 +03:00
|
|
|
|
1999-12-21 10:53:20 +03:00
|
|
|
/**
|
|
|
|
* We're asking the question: is aTest a member of bitset.
|
|
|
|
*
|
|
|
|
* @param
|
|
|
|
* @return TRUE or FALSE
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool TestBits(int aBitset,int aTest) {
|
1999-12-21 10:53:20 +03:00
|
|
|
if(aTest) {
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t result=(aBitset & aTest);
|
2011-09-29 10:19:26 +04:00
|
|
|
return bool(result==aTest);
|
1999-12-21 10:53:20 +03:00
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
1999-12-21 10:53:20 +03:00
|
|
|
}
|
|
|
|
|
1999-01-09 04:09:02 +03:00
|
|
|
struct nsHTMLElement {
|
2012-08-22 19:56:38 +04:00
|
|
|
bool IsMemberOf(int32_t aType) const;
|
1999-04-08 15:37:00 +04:00
|
|
|
|
2017-08-29 01:05:23 +03:00
|
|
|
#ifdef DEBUG
|
1999-01-20 09:56:07 +03:00
|
|
|
eHTMLTags mTagID;
|
2017-08-29 01:05:23 +03:00
|
|
|
#endif
|
1999-01-20 09:56:07 +03:00
|
|
|
int mParentBits; //defines groups that can contain this element
|
2013-08-12 19:28:41 +04:00
|
|
|
bool mLeaf;
|
|
|
|
|
|
|
|
static bool IsContainer(eHTMLTags aTag);
|
2017-09-01 12:38:09 +03:00
|
|
|
static bool IsBlock(eHTMLTags aTag);
|
2017-08-29 01:05:23 +03:00
|
|
|
};
|
1999-01-09 04:09:02 +03:00
|
|
|
|
2005-03-21 03:45:02 +03:00
|
|
|
extern const nsHTMLElement gHTMLElements[];
|
1999-01-20 09:56:07 +03:00
|
|
|
|
1999-02-01 12:49:36 +03:00
|
|
|
#endif
|