Index: src/tests/site/code/webui/web/webui.html |
diff --git a/src/tests/site/code/webui/web/webui.html b/src/tests/site/code/webui/web/webui.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0d5cef96c625e25cef140e6430ee0270eebd1035 |
--- /dev/null |
+++ b/src/tests/site/code/webui/web/webui.html |
@@ -0,0 +1,23 @@ |
+<!DOCTYPE html> |
+ |
+<html> |
+ <head> |
+ <meta charset="utf-8"> |
+ <title>Sample app</title> |
+ </head> |
+ |
+ <body> |
+ <template id="stringManipulation" |
+ instantiate="if shout != null"> |
+ <input type="text" |
+ bind-value="shout.myString" |
+ placeholder="Type here"> |
+ |
+ <div> Shouted: {{shout.shouted}} </div> |
+ <div> Palindromic: {{shout.palindrome}} </div> |
+ </template> |
+ |
+ <script type="application/dart" src="webui.dart"></script> |
+ <script src="packages/browser/dart.js"></script> |
+ </body> |
+</html> |