2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +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/. */
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
#ifndef mozilla_dom_ProcessingInstruction_h
|
|
|
|
#define mozilla_dom_ProcessingInstruction_h
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2018-03-19 22:18:07 +03:00
|
|
|
#include "mozilla/dom/CharacterData.h"
|
2002-09-04 10:57:25 +04:00
|
|
|
#include "nsAString.h"
|
2018-05-15 01:54:16 +03:00
|
|
|
|
|
|
|
class nsIPrincipal;
|
|
|
|
class nsIURI;
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
namespace mozilla {
|
2020-05-21 06:07:16 +03:00
|
|
|
|
|
|
|
class StyleSheet;
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
namespace dom {
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2020-05-21 06:07:16 +03:00
|
|
|
class ProcessingInstruction : public CharacterData {
|
2002-09-04 10:57:25 +04:00
|
|
|
public:
|
2014-06-20 06:01:40 +04:00
|
|
|
ProcessingInstruction(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
2013-01-09 00:45:06 +04:00
|
|
|
const nsAString& aData);
|
2002-09-04 10:57:25 +04:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
virtual already_AddRefed<CharacterData> CloneDataNode(
|
2020-05-21 06:07:16 +03:00
|
|
|
dom::NodeInfo* aNodeInfo, bool aCloneText) const override;
|
2002-09-04 10:57:25 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent,
|
|
|
|
bool aDumpAll) const override;
|
2002-09-04 10:57:25 +04:00
|
|
|
#endif
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
// WebIDL API
|
2018-03-19 22:15:40 +03:00
|
|
|
void GetTarget(nsAString& aTarget) { aTarget = NodeName(); }
|
2020-05-21 06:07:16 +03:00
|
|
|
// This is the WebIDL API for LinkStyle, even though only
|
|
|
|
// XMLStylesheetProcessingInstruction actually implements LinkStyle.
|
|
|
|
StyleSheet* GetSheet() const;
|
2018-03-19 22:15:39 +03:00
|
|
|
|
2018-03-22 00:39:04 +03:00
|
|
|
NS_IMPL_FROMNODE_HELPER(ProcessingInstruction, IsProcessingInstruction())
|
2018-03-19 22:15:39 +03:00
|
|
|
|
2002-09-04 10:57:25 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~ProcessingInstruction();
|
|
|
|
|
2006-03-17 17:38:57 +03:00
|
|
|
/**
|
|
|
|
* This will parse the content of the PI, to extract the value of the pseudo
|
|
|
|
* attribute with the name specified in aName. See
|
|
|
|
* http://www.w3.org/TR/xml-stylesheet/#NT-StyleSheetPI for the specification
|
|
|
|
* which is used to parse the content of the PI.
|
|
|
|
*
|
|
|
|
* @param aName the name of the attribute to get the value for
|
|
|
|
* @param aValue [out] the value for the attribute with name specified in
|
|
|
|
* aAttribute. Empty if the attribute isn't present.
|
|
|
|
*/
|
2017-10-03 01:05:19 +03:00
|
|
|
bool GetAttrValue(nsAtom* aName, nsAString& aValue);
|
2013-01-09 00:45:06 +04:00
|
|
|
|
2020-05-21 06:07:16 +03:00
|
|
|
JSObject* WrapNode(JSContext*, JS::Handle<JSObject*> aGivenProto) override;
|
2002-09-04 10:57:25 +04:00
|
|
|
};
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-04-04 16:01:11 +04:00
|
|
|
/**
|
|
|
|
* aNodeInfoManager must not be null.
|
|
|
|
*/
|
|
|
|
already_AddRefed<mozilla::dom::ProcessingInstruction>
|
|
|
|
NS_NewXMLProcessingInstruction(nsNodeInfoManager* aNodeInfoManager,
|
|
|
|
const nsAString& aTarget,
|
|
|
|
const nsAString& aData);
|
|
|
|
|
2013-01-09 00:45:06 +04:00
|
|
|
#endif // mozilla_dom_ProcessingInstruction_h
|