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