Searched refs:docType (Results 1 – 5 of 5) sorted by relevance
362 DocumentType* docType = doctype(); in determineParseMode() local363 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()
436 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 + ">";
486 DocumentType* docType = static_cast<DocumentType*>(node); in buildObjectForNode() local487 value.set("publicId", docType->publicId()); in buildObjectForNode()488 value.set("systemId", docType->systemId()); in buildObjectForNode()489 value.set("internalSubset", docType->internalSubset()); in buildObjectForNode()
594 void Document::setDocType(PassRefPtr<DocumentType> docType) in setDocType() argument598 ASSERT(!m_docType || !docType); in setDocType()599 if (m_docType && docType) in setDocType()601 m_docType = docType; in setDocType()
1776 Changes comment by docType() to say it may return 0 for html