/external/webkit/LayoutTests/fast/dom/DOMImplementation/ |
D | createDocumentType-err-expected.txt | 6 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/ |
D | isEqualNode.js | 4 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…
|
D | initial-values.js | 90 var doctype = document.implementation.createDocumentType("svg", "-//W3C//DTD SVG 1.1//EN", "http://…
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
D | nodeisequalnode22.js | 127 docType1 = domImpl1.createDocumentType(rootName,nullPubId,nullSysId); 128 docType2 = domImpl2.createDocumentType(rootName,nullPubId,nullSysId);
|
D | nodegettextcontent04.js | 110 docType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
|
D | nodeappendchild01.js | 108 docType = domImpl.createDocumentType(tagName,nullPubId,nullSysId);
|
D | nodeinsertbefore05.js | 110 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
|
D | documentadoptnode11.js | 109 docType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
|
D | nodereplacechild40.js | 109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
|
D | nodecomparedocumentposition02.js | 111 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
|
D | documentgetdoctype01.js | 113 newDocType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
|
D | documentadoptnode12.js | 113 docType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
|
D | documentgetxmlstandalone05.js | 117 newDocType = domImpl.createDocumentType(rootName,nullPubId,sysId);
|
D | nodereplacechild13.js | 116 newDocType = domImpl.createDocumentType(docElemName,nullPubId,nullSysId);
|
D | nodeinsertbefore02.js | 120 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | DOMImplementationFront.cpp | 57 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()
|
D | DOMImplementationFront.h | 48 …PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, c…
|
D | PublicDOMInterfaces.h | 63 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName :(NSString *)publicId :(NSString … 67 - (DOMDocumentType *)createDocumentType:(NSString *)qualifiedName publicId:(NSString *)publicId sys…
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
D | createDocumentType04.js | 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
D | createDocumentType04.js | 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/webkit/Source/WebCore/dom/ |
D | DOMImplementation.h | 48 …PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, c…
|
D | DOMImplementation.idl | 34 …[OldStyleObjC] DocumentType createDocumentType(in [ConvertUndefinedOrNullToNullString] DOMString q…
|
D | DOMImplementation.cpp | 215 PassRefPtr<DocumentType> DOMImplementation::createDocumentType(const String& qualifiedName, in createDocumentType() function in WebCore::DOMImplementation
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | DOMCore.idl | 76 …- (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/ |
D | DTMNodeProxy.java | 1400 public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId) in createDocumentType() method in DTMNodeProxy.DTMNodeProxyImplementation
|