Home
last modified time | relevance | path

Searched refs:createDocumentType (Results 1 – 25 of 31) sorted by relevance

12

/external/webkit/LayoutTests/fast/dom/DOMImplementation/
DcreateDocumentType-err-expected.txt6 PASS document.implementation.createDocumentType('foo').toString() is "[object DocumentType]"
7 PASS document.implementation.createDocumentType('foo', null).toString() is "[object DocumentType]"
8 PASS createDocumentType(, ); threw INVALID_CHARACTER_ERR
9 PASS createDocumentType(null, ); threw INVALID_CHARACTER_ERR
10 PASS createDocumentType(, null); threw INVALID_CHARACTER_ERR
11 PASS createDocumentType(, , null); threw INVALID_CHARACTER_ERR
12 PASS createDocumentType(null, null); threw INVALID_CHARACTER_ERR
13 PASS createDocumentType(null, null, null); threw INVALID_CHARACTER_ERR
14 PASS createDocumentType(null, ""); threw INVALID_CHARACTER_ERR
15 PASS createDocumentType("", null); threw INVALID_CHARACTER_ERR
[all …]
/external/webkit/LayoutTests/fast/dom/Node/script-tests/
DisEqualNode.js4 var docTypeAllSet = document.implementation.createDocumentType('html', '-//W3C//DTD XHTML 1.0 Stric…
5 var docTypeAllSet2 = document.implementation.createDocumentType('html', '-//W3C//DTD XHTML 1.0 Stri…
6 var docTypeDifferentPublicID = document.implementation.createDocumentType('html', 'foo', 'http://ww…
7 var docTypeDifferentSystemID = document.implementation.createDocumentType('html', '-//W3C//DTD XHTM…
Dinitial-values.js90 var doctype = document.implementation.createDocumentType("svg", "-//W3C//DTD SVG 1.1//EN", "http://…
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dnodeisequalnode22.js127 docType1 = domImpl1.createDocumentType(rootName,nullPubId,nullSysId);
128 docType2 = domImpl2.createDocumentType(rootName,nullPubId,nullSysId);
Dnodegettextcontent04.js110 docType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
Dnodeappendchild01.js108 docType = domImpl.createDocumentType(tagName,nullPubId,nullSysId);
Dnodeinsertbefore05.js110 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
Ddocumentadoptnode11.js109 docType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
Dnodereplacechild40.js109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
Dnodecomparedocumentposition02.js111 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
Ddocumentgetdoctype01.js113 newDocType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
Ddocumentadoptnode12.js113 docType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
Ddocumentgetxmlstandalone05.js117 newDocType = domImpl.createDocumentType(rootName,nullPubId,sysId);
Dnodereplacechild13.js116 newDocType = domImpl.createDocumentType(docElemName,nullPubId,nullSysId);
Dnodeinsertbefore02.js120 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
/external/webkit/Source/WebCore/bindings/objc/
DDOMImplementationFront.cpp57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, co… in createDocumentType() function in WebCore::DOMImplementationFront
59 …return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, sys… in createDocumentType()
DDOMImplementationFront.h48 …PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, c…
DPublicDOMInterfaces.h63 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName :(NSString *)publicId :(NSString …
67 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName publicId:(NSString *)publicId sys…
/external/webkit/LayoutTests/dom/html/level2/core/
DcreateDocumentType04.js93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
DcreateDocumentType04.js93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/Source/WebCore/dom/
DDOMImplementation.h48 …PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, c…
DDOMImplementation.idl34 …[OldStyleObjC] DocumentType createDocumentType(in [ConvertUndefinedOrNullToNullString] DOMString q…
DDOMImplementation.cpp215 PassRefPtr<DocumentType> DOMImplementation::createDocumentType(const String& qualifiedName, in createDocumentType() function in WebCore::DOMImplementation
/external/webkit/Source/WebKit/win/Interfaces/
DDOMCore.idl76 …- (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName :(NSString *)publicId :(NSString…
78 …HRESULT createDocumentType([in] BSTR qualifiedName, [in] BSTR publicId, [in] BSTR systemId, [out, …
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java1400 public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) in createDocumentType() method in DTMNodeProxy.DTMNodeProxyImplementation

12