diff options
Diffstat (limited to 'includes/js/dojox/io/proxy/tests')
-rw-r--r-- | includes/js/dojox/io/proxy/tests/frag.xml | 4 | ||||
-rw-r--r-- | includes/js/dojox/io/proxy/tests/xip.html | 62 |
2 files changed, 0 insertions, 66 deletions
diff --git a/includes/js/dojox/io/proxy/tests/frag.xml b/includes/js/dojox/io/proxy/tests/frag.xml deleted file mode 100644 index 6904bba..0000000 --- a/includes/js/dojox/io/proxy/tests/frag.xml +++ /dev/null @@ -1,4 +0,0 @@ -<response> -<foo>This is the foo text node value</foo> -<bar>This is the bar text node value</bar> -</response> diff --git a/includes/js/dojox/io/proxy/tests/xip.html b/includes/js/dojox/io/proxy/tests/xip.html deleted file mode 100644 index 5a5ba5f..0000000 --- a/includes/js/dojox/io/proxy/tests/xip.html +++ /dev/null @@ -1,62 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> -<html> -<head> - <title>XHR IFrame Proxy Tests</title> - <style type="text/css"> - @import "../../../../dojo/resources/dojo.css"; - @import "../../../../dijit/themes/tundra/tundra.css"; - @import "../../../../dijit/themes/dijit.css"; - </style> - - <script type="text/javascript" src="../../../../dojo/dojo.js" - djConfig="isDebug:true"></script> - <script type="text/javascript" src="../xip.js"></script> - <script type="text/javascript"> - dojo.require("dojox.io.proxy.xip"); - - function testXmlGet(){ -/* - //Normal xhrGet call. - dojo.xhrGet({ - url: "frag.xml", - handleAs: "xml", - load: function(result, ioArgs){ - var foo = result.getElementsByTagName("foo").item(0); - - dojo.byId("xmlGetOut").innerHTML = "Success: First foobar value is: " + foo.firstChild.nodeValue; - } - }); -*/ - - //xip xhrGet call. - dojo.xhrGet({ - iframeProxyUrl: "../xip_server.html", - url: "tests/frag.xml", - handleAs: "xml", - load: function(result, ioArgs){ - var foo = result.getElementsByTagName("foo").item(0); - - dojo.byId("xmlGetOut").innerHTML = "Success: First foobar value is: " + foo.firstChild.nodeValue; - } - }); - - } - - dojo.addOnLoad(function(){ - - }); - </script> -</head> -<body class="tundra"> - -<h1>XHR IFrame Proxy Tests</h1> -<p>Run this test from a web server, not from local disk.</p> - -<p> -<button onclick="testXmlGet()">Test XML GET</button> -</p> -<div id="xmlGetOut"></div> - -</body> -</html> |