Bug 503190 - Include assertions in the C++ translator output. r=smaug.

This commit is contained in:
Henri Sivonen
2012-10-01 11:52:32 +03:00
parent fc88a5853d
commit e99efa93f4
11 changed files with 94 additions and 85 deletions

View File

@@ -62,6 +62,12 @@ nsHtml5ElementName::getGroup()
return flags & NS_HTML5ELEMENT_NAME_GROUP_MASK;
}
bool
nsHtml5ElementName::isCustom()
{
return (flags & NS_HTML5ELEMENT_NAME_CUSTOM);
}
nsHtml5ElementName*
nsHtml5ElementName::elementNameByBuffer(PRUnichar* buf, int32_t offset, int32_t length, nsHtml5AtomTable* interner)
{