2017-09-20 01:32:51 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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
|
|
|
|
2017-09-20 01:32:51 +03:00
|
|
|
#ifndef nsElementTable_h
|
|
|
|
#define nsElementTable_h
|
1999-01-26 04:24:31 +03:00
|
|
|
|
2013-08-12 19:28:41 +04:00
|
|
|
#include "nsHTMLTags.h"
|
1999-01-09 04:09:02 +03:00
|
|
|
|
2012-06-25 23:59:42 +04:00
|
|
|
#ifdef DEBUG
|
2017-09-20 01:32:51 +03:00
|
|
|
void CheckElementTable();
|
2005-03-21 03:45:02 +03:00
|
|
|
#endif
|
1999-12-21 10:53:20 +03:00
|
|
|
|
2017-09-19 04:11:24 +03:00
|
|
|
struct nsHTMLElement {
|
2017-09-20 01:32:51 +03:00
|
|
|
static bool IsContainer(nsHTMLTag aTag);
|
|
|
|
static bool IsBlock(nsHTMLTag aTag);
|
2017-08-29 01:05:23 +03:00
|
|
|
};
|
1999-01-09 04:09:02 +03:00
|
|
|
|
2017-09-20 01:32:51 +03:00
|
|
|
#endif // nsElementTable_h
|