OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createDocument
(Results
1 - 25
of
188
) sorted by null
1
2
3
4
5
6
7
8
/cts/tests/tests/webkitsecurity/assets/
create-document-crash-on-attach-event.js
2
+ 'document.implementation.
createDocument
.');
4
var doc = document.implementation.
createDocument
('', '', null);
/external/webkit/Source/WebCore/xml/
DOMParser.cpp
33
RefPtr<Document> doc = DOMImplementation::
createDocument
(contentType, 0, KURL(), false);
/libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java
105
public Document
createDocument
(String namespaceURI,
/libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocument.java
14
* The
createDocument
method with valid arguments, should create a DOM Document
17
* Call the
createDocument
on this DOMImplementation with
createDocument
24
* href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
79
newDoc = domImpl.
createDocument
(namespaceURI, qualifiedName,
99
domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
120
domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
140
domImpl.
createDocument
(namespaceURI, ":", docType);
CreateDocument.java
35
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
40
*
createDocument
(namespaceURI,qualifiedName,doctype) on the retrieved
50
* href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
52
* href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])</a>
54
public final class
CreateDocument
extends DOMTestCase {
96
domImpl.
createDocument
(namespaceURI, malformedName, docType);
117
domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
138
// domImpl.
createDocument
(namespaceURI, qualifiedName, docType)
[
all
...]
/external/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.cpp
62
PassRefPtr<Document> DOMImplementationFront::
createDocument
(const String& namespaceURI, const String& qualifiedName, DocumentType* type, ExceptionCode& ec)
64
return reinterpret_cast<DOMImplementation*>(this)->
createDocument
(namespaceURI, qualifiedName, type, ec);
DOMImplementationFront.h
49
PassRefPtr<Document>
createDocument
(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
/external/webkit/Source/WebCore/dom/
DOMImplementation.h
49
PassRefPtr<Document>
createDocument
(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
60
static PassRefPtr<Document>
createDocument
(const String& MIMEType, Frame*, const KURL&, bool inViewSourceMode);
DOMImplementation.idl
38
[OldStyleObjC] Document
createDocument
(in [ConvertNullToNullString] DOMString namespaceURI,
/libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java
41
private Method
createDocument
;
93
createDocument
=
95
"
createDocument
",
133
return (org.w3c.dom.Document)
createDocument
.invoke(
JTidyDOMImplementation.java
117
public Document
createDocument
(String namespaceURI,
/external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
createDocument-namespace-err.js
1
description("
createDocument
tests modeled after createElementNS tests from mozilla which were attached to webkit bug 16833");
3
// document.implementation.
createDocument
() should throw the same set of errors
5
// http://www.w3.org/TR/DOM-Level-3-Core/core.html#Level-2-Core-DOM-
createDocument
7
// LayoutTests/fast/dom/Document/resources/
createDocument
-namespace-err.js
119
// Gecko throws "undefined" if
createDocument
isn't
141
shouldBeEqualToString("document.implementation.
createDocument
().toString()", "[object Document]");
142
shouldBeEqualToString("document.implementation.
createDocument
(\"http://www.example.com\").toString()", "[object Document]");
144
runNSTests(allNSTests, document.implementation, "
createDocument
");
/external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/
readonly-exceptions.js
3
var xmlDoc = document.implementation.
createDocument
("http://www.w3.org/1999/xhtml", "html", null);
4
var xmlDoc2 = document.implementation.
createDocument
("http://www.w3.org/1999/xhtml", "html", null);
/external/webkit/Source/WebCore/loader/
DocumentWriter.h
79
PassRefPtr<Document>
createDocument
(const KURL&);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocument01.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
39
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype)
47
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
48
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])</a>
85
aNewDoc = domImpl.
createDocument
(namespaceURI, malformedName, docType);
createDocument02.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
38
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype) on
44
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
45
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])</a>
83
aNewDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
createDocument03.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
38
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype) on
44
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
45
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='WRONG_DOCUMENT_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='WRONG_DOCUMENT_ERR'])</a>
82
aNewDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
createDocument06.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
39
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype) on
48
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
49
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NAMESPACE_ERR'])</a>
86
aNewDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
createDocument07.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
39
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype) on
45
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
80
aNewDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
createDocument08.java
34
* DOMImplementation.
createDocument
with an empty qualified name should cause an INVALID_CHARACTER_ERR.
70
aNewDoc = domImpl.
createDocument
(namespaceURI, "", docType);
documentgetelementsbytagnameNS01.java
78
newDoc = domImpl.
createDocument
(nullNS, "root", docType);
domimplementationcreatedocument04.java
47
* The
createDocument
method should throw a NAMESPACE_ERR if the qualifiedName has
50
* Call the
createDocument
on this DOMImplementation with null namespaceURI and a
55
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
56
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
94
newDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
domimplementationcreatedocument05.java
47
* The
createDocument
method should throw a NAMESPACE_ERR if the qualifiedName has
51
* Call the
createDocument
on this DOMImplementation with namespaceURI that is
56
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
93
newDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
domimplementationcreatedocument07.java
47
* The
createDocument
method should raise a NAMESPACE_ERR if the qualifiedName is malformed
49
* Invoke the
createDocument
method on this DOMImplementation object with null values
54
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
90
newDoc = domImpl.
createDocument
(namespaceURI, ":", docType);
createDocument04.java
34
* The "
createDocument
(namespaceURI,qualifiedName,doctype)" method for a
38
* Invoke method
createDocument
(namespaceURI,qualifiedName,doctype) on
45
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
">http://www.w3.org/TR/DOM-Level-2-Core/core#Level-2-Core-DOM-
createDocument
</a>
46
* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='WRONG_DOCUMENT_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Level-2-Core-DOM-
createDocument
')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='WRONG_DOCUMENT_ERR'])</a>
85
aNewDoc = domImpl.
createDocument
(namespaceURI, qualifiedName, docType);
Completed in 4564 milliseconds
1
2
3
4
5
6
7
8