Home
last modified time | relevance | path

Searched refs:docType (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/html/
DHTMLDocument.cpp362 DocumentType* docType = doctype(); in determineParseMode() local
363 if (!docType || !equalIgnoringCase(docType->name(), "html")) in determineParseMode()
366 …else if (!doctype()->systemId().isEmpty() && equalIgnoringCase(docType->systemId(), "http://www.ib… in determineParseMode()
370 else if (docType->publicId().isEmpty()) in determineParseMode()
376 String lowerPubID = docType->publicId().lower(); in determineParseMode()
385 switch (docType->systemId().isEmpty() ? in determineParseMode()
/external/webkit/WebCore/inspector/front-end/
Dutilities.js436 var docType = "<!DOCTYPE " + this.nodeName;
438 docType += " PUBLIC \"" + this.publicId + "\"";
440 docType += " \"" + this.systemId + "\"";
442 docType += " SYSTEM \"" + this.systemId + "\"";
444 docType += " [" + this.internalSubset + "]";
445 return docType + ">";
/external/webkit/WebCore/inspector/
DInspectorDOMAgent.cpp486 DocumentType* docType = static_cast<DocumentType*>(node); in buildObjectForNode() local
487 value.set("publicId", docType->publicId()); in buildObjectForNode()
488 value.set("systemId", docType->systemId()); in buildObjectForNode()
489 value.set("internalSubset", docType->internalSubset()); in buildObjectForNode()
/external/webkit/WebCore/dom/
DDocument.cpp594 void Document::setDocType(PassRefPtr<DocumentType> docType) in setDocType() argument
598 ASSERT(!m_docType || !docType); in setDocType()
599 if (m_docType && docType) in setDocType()
601 m_docType = docType; in setDocType()
/external/webkit/WebCore/
DChangeLog-2006-05-101776 Changes comment by docType() to say it may return 0 for html