1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!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>
|