Lines Matching refs:document
49 // "document.write('<base href="http://www.yahoo.com/"...');" to setup base URL
64 // always uses the latest "href" attribute of base tag to set document's base
69 // the base target value from document object when appending new base tag.
70 // If there are multiple base tags in original document, we will comment all old
81 #include "Document.h"
111 Document* document,
115 , document(document)
117 , isHTMLDocument(document->isHTMLDocument())
152 // First we add doc type declaration if original document has it.
155 result.append(createMarkup(param->document->doctype()));
170 String xmlEncoding = param->document->xmlEncoding();
172 xmlEncoding = param->document->loader()->writer()->encoding();
176 result.append(param->document->xmlVersion());
179 if (param->document->xmlStandalone())
183 // Add doc type declaration if original document has it.
186 result.append(createMarkup(param->document->doctype()));
205 // of the document. If the whole <HEAD> is larger and meta is the
261 param->document->baseTarget()));
332 String completeURL = subFrame ? subFrame->frame()->document()->url() :
333 param->document->completeURL(attrValue);
392 // For xml base document.
424 // Document type node can be in DOM?
477 // Get current using document.
478 Document* currentDoc = currentFrame->frame()->document();
499 KURL mainURL = m_specifiedWebFrameImpl->frame()->document()->url();
503 Document* document = webFrame->frame()->document();
504 const KURL& url = document->url();
511 String encoding = document->loader()->writer()->encoding();
515 SerializeDomParam param(url, textEncoding, document, directoryName);
517 Element* documentElement = document->documentElement();