aboutsummaryrefslogtreecommitdiffstats
path: root/regression/issue-169.html
diff options
context:
space:
mode:
authorMisko Hevery2010-12-03 15:42:11 -0800
committerMisko Hevery2010-12-03 15:42:42 -0800
commit2bbced212e2ee93948c45360fee00b2e3f960392 (patch)
treea42ea9b49c42c37b9f8e42fa0fc4bf1fb906f948 /regression/issue-169.html
parent5a8ad8fe329fc09898ff43a060710265d38393be (diff)
downloadangular.js-2bbced212e2ee93948c45360fee00b2e3f960392.tar.bz2
Fix sanitization issues as suggested by evn
Diffstat (limited to 'regression/issue-169.html')
-rw-r--r--regression/issue-169.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/regression/issue-169.html b/regression/issue-169.html
new file mode 100644
index 00000000..e18c4f2e
--- /dev/null
+++ b/regression/issue-169.html
@@ -0,0 +1,10 @@
+<!DOCTYPE HTML>
+<html xmlns:ng="http://angularjs.org">
+ <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
+ <body>
+ <span ng:init='x = {d:3}; x1 = {bar:[x,5]}; x1.bar[0].d = 4'>
+ <input name="x1.bar[0].d" type="text"></input>
+ <input name="x.d" type="text"></input>
+ <span> {{x1}} -- {{x1.bar[0].d}}</span>
+ </body>
+</html> \ No newline at end of file