HomeSort by relevance Sort by last modified time
    Searched refs:documentURI (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
documentURI.js 1 description("Test that changing documentURI has no effects on the url passed into storage events.");
35 evalAndLog("document.documentURI = 'abc'");
36 shouldBeEqualToString("document.documentURI", "abc");
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentsetdocumenturi01.js 80 Set the documentURI to a valid string and retreive the documentURI of this
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
98 doc.documentURI = "file:///test";
100 docURI = doc.documentURI;
documentsetdocumenturi02.js 80 Set the documentURI to null and retreive the documentURI of this document and verify
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
100 doc.documentURI = nullValue;
102 docURI = doc.documentURI;
nodegetbaseuri01.js 91 var documentURI;
101 documentURI = doc.documentURI;
103 assertEquals("sameAsDocumentURI",documentURI,baseURI);
documentsetdocumenturi03.js 80 Create a new document and set its documentURI to a valid string. Retreive the documentURI
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
113 newDoc.documentURI = "somestring";
115 docURI = newDoc.documentURI;
nodegetbaseuri04.js 78 Node.baseURI for a document element without an xml:base attribute should be same as Document.documentURI.
92 var documentURI;
104 documentURI = doc.documentURI;
106 assertEquals("baseURIEqualsDocURI",documentURI,baseURI);
documentgetdocumenturi01.js 78 Retreive the documentURI of this document, and verify if it is not null.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
95 docURI = doc.documentURI;
documentgetdocumenturi02.js 78 Create a new Document, retreive its documentURI, and verify if it is null.
82 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
110 docURI = newDoc.documentURI;
documentgetdocumenturi03.js 79 now owned by the importing document, its documentURI attribute value should be null
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-documentURI
116 docURI = importedOwner.documentURI;
nodegetbaseuri02.js 79 and if affected by changes in Document.documentURI.
116 newDoc.documentURI = "http://www.example.com/sample.xml";
nodegetbaseuri11.js 79 check if the baseURI attribute of the new Processing Instruction node is the same as Document.documentURI.
114 docURI = doc.documentURI;
documentgetxmlstandalone04.js 79 Retreive the documentURI of a document for which standalone was specified as "yes", this
nodegetbaseuri13.js 109 docURI = doc.documentURI;
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebPasswordFormData.cpp 162 KURL fullOrigin(ParsedURLString, form->document()->documentURI());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 244 String url = frame->document()->documentURI();
268 String url = frame->document()->documentURI();
275 String url = frame->document()->documentURI();
287 String url = frame->document()->documentURI();
417 if (android::WebViewCore::getWebViewCore(frame->view())->exceededDatabaseQuota(frame->document()->documentURI(), name, currentQuota, estimatedSize)) {
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.h 154 JSStringRef documentURI();
AccessibilityUIElement.cpp     [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 176 public void setDocumentURI(String documentURI) {}
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java     [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 694 JSStringRef AccessibilityUIElement::documentURI()
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityUIElementWin.cpp 589 JSStringRef AccessibilityUIElement::documentURI()
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java     [all...]
  /external/webkit/Source/WebCore/dom/
Document.idl 79 attribute [ConvertNullStringTo=Null, ConvertNullToNullString] DOMString documentURI;
  /external/webkit/LayoutTests/dom/html/level1/core/
selfhtml.js 662 var base = document.documentURI;

Completed in 1255 milliseconds

1 2