gecko-dev/parser/htmlparser/nsElementTable.h

32 строки
613 B
C
Исходник Обычный вид История

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-20 09:56:07 +03:00
1999-01-26 04:24:31 +03:00
#ifndef _NSELEMENTABLE
#define _NSELEMENTABLE
#include "nsHTMLTags.h"
#include "nsIDTD.h"
#ifdef DEBUG
extern void CheckElementTable();
#endif
struct nsHTMLElement
{
static bool IsContainer(nsHTMLTag aTag);
static bool IsBlock(nsHTMLTag aTag);
};
#endif