summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/protected/pages/ClientScripTest.page
diff options
context:
space:
mode:
authorwei <>2006-07-05 04:23:43 +0000
committerwei <>2006-07-05 04:23:43 +0000
commit8d8b6688cbbb1febe92012ccc2a4158fa594fcb3 (patch)
treea9f5d43ea3a6efa4a6590192e4ae7f08655310bb /tests/FunctionalTests/features/protected/pages/ClientScripTest.page
parent91c4292a8063dd2d7a27e7629c015faa4bf052d6 (diff)
Fixed #223 #225
Diffstat (limited to 'tests/FunctionalTests/features/protected/pages/ClientScripTest.page')
-rw-r--r--tests/FunctionalTests/features/protected/pages/ClientScripTest.page30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/FunctionalTests/features/protected/pages/ClientScripTest.page b/tests/FunctionalTests/features/protected/pages/ClientScripTest.page
deleted file mode 100644
index d5b6e182..00000000
--- a/tests/FunctionalTests/features/protected/pages/ClientScripTest.page
+++ /dev/null
@@ -1,30 +0,0 @@
-<com:TContent ID="Content">
- <h1>ClientScript Test</h1>
-
- <com:TClientScript ScriptUrl=<%~ test.js %>>
- if(typeof(ClientScriptInfo) == "undefined")
- ClientScriptInfo = [];
- ClientScriptInfo.push("ok 3?")
- </com:TClientScript>
-
- <com:TClientScript>
- if(typeof(ClientScriptInfo) == "undefined")
- ClientScriptInfo = [];
- ClientScriptInfo.push("ok 2!")
- </com:TClientScript>
-
- <com:TLabel ID="label1" Text="Label 1" />
- <input type="button" id="button1" value="update" />
-
- <com:TClientScript UsingPradoScripts="prado">
- Event.observe("button1", "click", function()
- {
- element = $("<%= $this->label1->ClientID %>");
- if(element)
- element.innerHTML = "Label 1: "+inspect(ClientScriptInfo);
- else
- alert("failed");
- });
- </com:TClientScript>
-
-</com:TContent> \ No newline at end of file