Home
last modified time | relevance | path

Searched refs:DOMDocument (Results 101 – 105 of 105) sorted by last modified time

12345

/plugin/wysiwyg/fckeditor/editor/js/
H A Dfckeditorcode_ie.js68DOMDocument=B.responseXML;else if (B.status==0&&B.readyState==4){this.DOMDocument=FCKTools.CreateX…
H A Dfckeditorcode_gecko.js67DOMDocument=C.responseXML;else if (C.status==0&&C.readyState==4) this.DOMDocument=C.responseXML;el…
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckxml_gecko.js36 this.DOMDocument = oXmlHttp.responseXML ;
38 this.DOMDocument = oXmlHttp.responseXML ;
40 this.DOMDocument = null ;
42 if ( this.DOMDocument == null || this.DOMDocument.firstChild == null )
60 var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
61 …this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITER…
79 var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
80 this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null);
H A Dfckxml_ie.js44 this.DOMDocument = oXmlHttp.responseXML ;
47 this.DOMDocument = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
48 this.DOMDocument.async = false ;
49 this.DOMDocument.resolveExternals = false ;
50 this.DOMDocument.loadXML( oXmlHttp.responseText ) ;
54 this.DOMDocument = null ;
57 if ( this.DOMDocument == null || this.DOMDocument.firstChild == null )
75 return this.DOMDocument.selectNodes( xpath ) ;
86 return this.DOMDocument.selectSingleNode( xpath ) ;
/plugin/wysiwyg/fckeditor/editor/filemanager/browser/default/js/
H A Dfckxml.js73 oFCKXml.DOMDocument = oXmlHttp.responseXML ;
84 this.DOMDocument = oXmlHttp.responseXML ;
95 return this.DOMDocument.selectNodes( xpath ) ;
100 var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument,
101 …this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITER…
118 return this.DOMDocument.selectSingleNode( xpath ) ;
121 var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument,
122 this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null);

12345