aboutsummaryrefslogtreecommitdiffstats
path: root/scenario/browser.html
diff options
context:
space:
mode:
authorVojta Jina2011-06-17 19:06:27 +0200
committerVojta Jina2011-06-17 19:13:49 +0200
commit92ebf11b2aaaa357b7d3d91c297b747ae4b8fdf0 (patch)
tree43ea80bb929140512a189636493a47117d63aaa6 /scenario/browser.html
parente6ee9947645c5cca9cf6efd902cae1a4a31ea13c (diff)
downloadangular.js-92ebf11b2aaaa357b7d3d91c297b747ae4b8fdf0.tar.bz2
Remove obsolete scenario folder
* moved scenario e2e tests in test/scenario/e2e folder * remove $location test
Diffstat (limited to 'scenario/browser.html')
-rw-r--r--scenario/browser.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/scenario/browser.html b/scenario/browser.html
deleted file mode 100644
index eac43692..00000000
--- a/scenario/browser.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html xmlns:ng="http://angularjs.org">
- <head>
- <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
- </head>
- <body ng:init="$window.$scope = this">
-
- <h1>Should mark input field red and create hover</h1>
- <input type="text" name="name" ng:required/>
-
- <h1>Should reflect changes in URL</h1>
- <pre>$location={{$location}}</pre>
- hash: <input type="text" name="$location.hash"/> <br/>
- hashPath: <input type="text" name="$location.hashPath"/> <br/>
- hashSearch: <input type="text" name="$location.hashSearch" ng:format="json"/> <br/>
-
- <h1>Should reflect changes in Cookie</h1>
- <pre>$cookies={{$cookies}}</pre>
- $cookies: <input type="text" name="$cookies" ng:format="json"/> <br/>
-
- </body>
- </html>