Home | History | Annotate | Download | only in xml

Lines Matching refs:m_document

46     : m_document(document)
54 visitor->trace(m_document);
125 RefPtrWillBeRawPtr<Element> documentElement = m_document->documentElement();
127 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
128 RefPtrWillBeRawPtr<Element> body = m_document->createElement(bodyTag, true);
130 m_document->parserAppendChild(rootElement);
133 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
134 RefPtrWillBeRawPtr<Element> head = m_document->createElement(headTag, true);
135 RefPtrWillBeRawPtr<Element> style = m_document->createElement(styleTag, true);
137 style->parserAppendChild(m_document->createTextNode("html, body { height: 100% } parsererror + svg { width: 100%; height: 100% }"));
140 RefPtrWillBeRawPtr<Element> body = m_document->createElement(bodyTag, true);
143 m_document->parserRemoveChild(*documentElement);
146 m_document->parserAppendChild(rootElement);
152 RefPtrWillBeRawPtr<Element> reportElement = createXHTMLParserErrorHeader(m_document, errorMessages);
154 if (m_document->transformSourceDocument()) {
157 RefPtrWillBeRawPtr<Element> paragraph = m_document->createElement(pTag, true);
159 paragraph->parserAppendChild(m_document->createTextNode("This document was created as the result of an XSL transformation. The line and column numbers given are from the transformed result."));
170 m_document->updateRenderTreeIfNeeded();