| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 ForcedXML | 62 ForcedXML |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 class MarkupAccumulator { | 65 class MarkupAccumulator { |
| 66 WTF_MAKE_NONCOPYABLE(MarkupAccumulator); | 66 WTF_MAKE_NONCOPYABLE(MarkupAccumulator); |
| 67 STACK_ALLOCATED(); | 67 STACK_ALLOCATED(); |
| 68 public: | 68 public: |
| 69 MarkupAccumulator(WillBeHeapVector<RawPtrWillBeMember<Node>>*, EAbsoluteURLs
, const Range* = nullptr, SerializationType = AsOwnerDocument); | 69 MarkupAccumulator(WillBeHeapVector<RawPtrWillBeMember<Node>>*, EAbsoluteURLs
, const Range* = nullptr, SerializationType = AsOwnerDocument); |
| 70 virtual ~MarkupAccumulator(); | 70 virtual ~MarkupAccumulator(); |
| 71 | 71 |
| 72 String serializeNodes(Node& targetNode, EChildrenOnly, Vector<QualifiedName>
* tagNamesToSkip = nullptr); | 72 String serializeNodes(Node& targetNode, EChildrenOnly); |
| 73 | 73 |
| 74 static void appendComment(StringBuilder&, const String&); | 74 static void appendComment(StringBuilder&, const String&); |
| 75 | 75 |
| 76 static void appendCharactersReplacingEntities(StringBuilder&, const String&,
unsigned, unsigned, EntityMask); | 76 static void appendCharactersReplacingEntities(StringBuilder&, const String&,
unsigned, unsigned, EntityMask); |
| 77 | 77 |
| 78 protected: | 78 protected: |
| 79 void appendString(const String&); | 79 void appendString(const String&); |
| 80 void appendStartTag(Node&, Namespaces* = nullptr); | 80 void appendStartTag(Node&, Namespaces* = nullptr); |
| 81 virtual void appendEndTag(const Element&); | 81 virtual void appendEndTag(const Element&); |
| 82 static size_t totalLength(const Vector<String>&); | 82 static size_t totalLength(const Vector<String>&); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 102 bool shouldSelfClose(const Element&); | 102 bool shouldSelfClose(const Element&); |
| 103 bool elementCannotHaveEndTag(const Node&); | 103 bool elementCannotHaveEndTag(const Node&); |
| 104 void appendEndMarkup(StringBuilder&, const Element&); | 104 void appendEndMarkup(StringBuilder&, const Element&); |
| 105 | 105 |
| 106 RawPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Node>>> const m_nodes
; | 106 RawPtrWillBeMember<WillBeHeapVector<RawPtrWillBeMember<Node>>> const m_nodes
; |
| 107 RawPtrWillBeMember<const Range> const m_range; | 107 RawPtrWillBeMember<const Range> const m_range; |
| 108 | 108 |
| 109 private: | 109 private: |
| 110 String resolveURLIfNeeded(const Element&, const String&) const; | 110 String resolveURLIfNeeded(const Element&, const String&) const; |
| 111 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att
ribute&); | 111 void appendQuotedURLAttributeValue(StringBuilder&, const Element&, const Att
ribute&); |
| 112 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam
espaces*, Vector<QualifiedName>* tagNamesToSkip); | 112 void serializeNodesWithNamespaces(Node& targetNode, EChildrenOnly, const Nam
espaces*); |
| 113 bool serializeAsHTMLDocument(const Node&) const; | 113 bool serializeAsHTMLDocument(const Node&) const; |
| 114 | 114 |
| 115 StringBuilder m_markup; | 115 StringBuilder m_markup; |
| 116 const EAbsoluteURLs m_resolveURLsMethod; | 116 const EAbsoluteURLs m_resolveURLsMethod; |
| 117 SerializationType m_serializationType; | 117 SerializationType m_serializationType; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } | 120 } |
| 121 | 121 |
| 122 #endif | 122 #endif |
| OLD | NEW |