summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/labs/architecture-examples/react/index.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/labs/architecture-examples/react/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/labs/architecture-examples/react/index.html b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/labs/architecture-examples/react/index.html
new file mode 100644
index 0000000000..340a2fec1f
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/labs/architecture-examples/react/index.html
@@ -0,0 +1,24 @@
+<!doctype html>
+<html lang="en" data-framework="react">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <title>React • TodoMVC</title>
+ <link rel="stylesheet" href="bower_components/todomvc-common/base.css">
+ </head>
+ <body>
+ <section id="todoapp"></section>
+ <footer id="info"></footer>
+ <div id="benchmark"></div>
+
+ <script src="bower_components/todomvc-common/base.js"></script>
+ <script src="bower_components/react/react.js"></script>
+ <script src="bower_components/react/JSXTransformer.js"></script>
+ <script src="bower_components/director/build/director.min.js"></script>
+
+ <script type="text/jsx" src="js/utils.jsx"></script>
+ <script type="text/jsx" src="js/todoItem.jsx"></script>
+ <script type="text/jsx" src="js/footer.jsx"></script>
+ <script type="text/jsx" src="js/app.jsx"></script>
+ </body>
+</html>