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 nsHtml5ReleasableElementName_h
|
|
|
|
#define nsHtml5ReleasableElementName_h
|
2009-06-29 02:44:22 +04:00
|
|
|
|
|
|
|
#include "nsHtml5ElementName.h"
|
2012-07-13 22:55:21 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-06-29 02:44:22 +04:00
|
|
|
|
2012-07-13 22:55:21 +04:00
|
|
|
class nsHtml5ReleasableElementName MOZ_FINAL : public nsHtml5ElementName
|
2009-06-29 02:44:22 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsHtml5ReleasableElementName(nsIAtom* name);
|
|
|
|
virtual void release();
|
2009-09-21 17:18:20 +04:00
|
|
|
virtual nsHtml5ElementName* cloneElementName(nsHtml5AtomTable* interner);
|
2009-06-29 02:44:22 +04:00
|
|
|
};
|
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // nsHtml5ReleasableElementName_h
|