2012-05-29 19:52:43 +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/. */
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#ifndef nsHtml5DocumentMode_h
|
|
|
|
#define nsHtml5DocumentMode_h
|
2009-06-29 02:44:22 +04:00
|
|
|
|
|
|
|
enum nsHtml5DocumentMode {
|
|
|
|
STANDARDS_MODE,
|
|
|
|
ALMOST_STANDARDS_MODE,
|
|
|
|
QUIRKS_MODE
|
|
|
|
};
|
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // nsHtml5DocumentMode_h
|