Bug 1403150 - Ignore the formatting on gHTMLElements r=smaug

MozReview-Commit-ID: FKHbmNBJjia
This commit is contained in:
Sylvestre Ledru
2017-09-26 14:40:06 +02:00
parent fa144c59b3
commit 29ad0802e0

View File

@@ -34,6 +34,7 @@ struct HTMLElement
// values for the abovementioned tags at some point. // values for the abovementioned tags at some point.
// //
static const HTMLElement gHTMLElements[] = { static const HTMLElement gHTMLElements[] = {
// clang-format off
ELEM(unknown, ____, ____) ELEM(unknown, ____, ____)
ELEM(a, ____, true) ELEM(a, ____, true)
ELEM(abbr, ____, true) ELEM(abbr, ____, true)
@@ -180,6 +181,7 @@ static const HTMLElement gHTMLElements[] = {
ELEM(markupDecl, ____, true) ELEM(markupDecl, ____, true)
ELEM(instruction, ____, true) ELEM(instruction, ____, true)
ELEM(userdefined, ____, true) ELEM(userdefined, ____, true)
// clang-format on
}; };
#undef ELEM #undef ELEM