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/. */
|
2011-11-30 21:44:31 +04:00
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#ifndef nsHtml5ViewSourceUtils_h
|
|
|
|
#define nsHtml5ViewSourceUtils_h
|
2011-11-30 21:44:31 +04:00
|
|
|
|
|
|
|
#include "nsHtml5HtmlAttributes.h"
|
|
|
|
|
|
|
|
class nsHtml5ViewSourceUtils {
|
2018-03-16 18:26:06 +03:00
|
|
|
public:
|
|
|
|
static nsHtml5HtmlAttributes* NewBodyAttributes();
|
|
|
|
static nsHtml5HtmlAttributes* NewLinkAttributes();
|
|
|
|
static nsHtml5HtmlAttributes* NewMetaViewportAttributes();
|
2011-11-30 21:44:31 +04:00
|
|
|
};
|
|
|
|
|
2013-08-23 19:07:10 +04:00
|
|
|
#endif // nsHtml5ViewSourceUtils_h
|