summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html')
-rw-r--r--third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html
new file mode 100644
index 0000000000..f9e518ded7
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/vanillajs/index.html
@@ -0,0 +1,51 @@
+<!doctype html>
+<html lang="en" data-framework="javascript">
+ <head>
+ <meta charset="utf-8">
+ <title>Vanilla JavaScript TodoMVC example</title>
+ <link rel="stylesheet" href="node_modules/todomvc-common/base.css">
+ <link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
+ </head>
+ <body>
+ <section class="todoapp">
+ <header class="header">
+ <h1>todos</h1>
+ <input class="new-todo" placeholder="What needs to be done?" autofocus>
+ </header>
+ <section class="main">
+ <input class="toggle-all" type="checkbox">
+ <label for="toggle-all">Mark all as complete</label>
+ <ul class="todo-list"></ul>
+ </section>
+ <footer class="footer">
+ <span class="todo-count"></span>
+ <ul class="filters">
+ <li>
+ <a href="#/" class="selected">All</a>
+ </li>
+ <li>
+ <a href="#/active">Active</a>
+ </li>
+ <li>
+ <a href="#/completed">Completed</a>
+ </li>
+ </ul>
+ <button class="clear-completed">Clear completed</button>
+ </footer>
+ </section>
+ <footer class="info">
+ <p>Double-click to edit a todo</p>
+ <p>Speedometer version by <a href="http://twitter.com/addyosmani">Addy Osmani</p>
+ <p>Parts by <a href="http://twitter.com/oscargodson">Oscar Godson</a></p>
+ <p>Refactored by <a href="https://github.com/cburgmer">Christoph Burgmer</a></p>
+ <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
+ </footer>
+ <script src="js/helpers.js"></script>
+ <script src="js/store.js"></script>
+ <script src="js/model.js"></script>
+ <script src="js/template.js"></script>
+ <script src="js/view.js"></script>
+ <script src="js/controller.js"></script>
+ <script src="js/app.js"></script>
+ </body>
+</html>