aboutsummaryrefslogtreecommitdiffstats
path: root/regression
diff options
context:
space:
mode:
Diffstat (limited to 'regression')
-rw-r--r--regression/issue-170.html28
-rw-r--r--regression/jqLite_after_NPE.html24
2 files changed, 0 insertions, 52 deletions
diff --git a/regression/issue-170.html b/regression/issue-170.html
deleted file mode 100644
index 392abf81..00000000
--- a/regression/issue-170.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML>
-<html xmlns:ng="http://angularjs.org">
-<head>
- <script type="text/javascript" src="../lib/jquery/jquery-1.4.2.js"></script>
- <script type="text/javascript" src="../src/angular-bootstrap.js" ng:autobind></script>
-<head>
-<body>
- <select name='selection0' style="display:block;">
- <option ng:repeat='value in ["FOO","BAR"]'">{{value}}</option>
- </select>
- {{selection0}} &lt;-- FOO should be shown here
-
- <hr/>
-
- <select ng:init="selection1='ignore'" name='selection1' style="display:block;">
- <option ng:repeat='value in ["FOO","BAR"]' ng:bind-attr="{selected:'{{value==\'BAR\'}}'}">{{value}}</option>
- </select>
- {{selection1}} &lt;-- BAR should be shown here
-
- <hr/>
-
- <select ng:init="selection2=1" name="selection2" style="display:block;">
- <option value="{{$index}}" ng:repeat="opt in ['zero', 'one']">{{opt}}</option>
- </select>
- {{selection2}} &lt;-- 1 should be shown here
-
-</body>
-</html> \ No newline at end of file
diff --git a/regression/jqLite_after_NPE.html b/regression/jqLite_after_NPE.html
deleted file mode 100644
index a914e953..00000000
--- a/regression/jqLite_after_NPE.html
+++ /dev/null
@@ -1,24 +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>
- <script type="text/javascript">
- angular.markup('-'+'--', function(text, textNode, parentElement) {
- var compiler = this;
- var index = text.indexOf('-'+'--');
- if (index > -1) {
- textNode.after(text.substring(index + 3));
- textNode.after('<hr/>');
- textNode.after(compiler.text(text.substring(0, index)));
- textNode.remove();
- }
- });
- </script>
-</head>
-<body>
-{{1+3}}
-xxx
----
-xxx
-<select name="something"><option selected="true">{{'a'}}</option><option value="">{{'b'}}</option><option>C</option></select></body>
-</html> \ No newline at end of file