Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2735)

Unified Diff: appengine/isolate/ui/res/imp/index/isolate-index-demo.html

Issue 2991153002: Add stub for new polymer-based Isolate UI (Closed)
Patch Set: Address feedback Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/isolate/ui/res/imp/index/isolate-index.html ('k') | appengine/isolate/ui/res/js/common.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/isolate/ui/res/imp/index/isolate-index-demo.html
diff --git a/appengine/isolate/ui/res/imp/index/isolate-index-demo.html b/appengine/isolate/ui/res/imp/index/isolate-index-demo.html
new file mode 100644
index 0000000000000000000000000000000000000000..6c01e91cf0831eaecca3cfa5209cb472f65759c1
--- /dev/null
+++ b/appengine/isolate/ui/res/imp/index/isolate-index-demo.html
@@ -0,0 +1,38 @@
+<!--
+# Copyright 2017 The LUCI Authors. All rights reserved.
+# Use of this source code is governed by the Apache v2.0 license that can be
+# found in the LICENSE file.
+-->
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Isolate index Demo</title>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
+ <script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></script>
+ <script src="../../../node_modules/skia-common-js/common.js"></script>
+
+ <script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script>
+
+
+ <script type="text/javascript" charset="utf-8">
+ sinon.format = function(object) {return JSON.stringify(object);}
+ sinon.log = function(message) {console.log(message);};
+ var server = sinon.fakeServer.create();
+ server.autoRespondAfter = 1200;
+ server.autoRespond = true;
+
+
+ </script>
+ <link rel="import" href="/res/imp/bower_components/polymer/polymer.html">
+ <link rel="import" href="isolate-index.html">
+</head>
+<body>
+
+<isolate-index
+ client_id="540429983429-ftq2fch22a9puv03lj7sffhvh0e9962r.apps.googleusercontent.com">
+</isolate-index>
+
+</body>
+</html>
« no previous file with comments | « appengine/isolate/ui/res/imp/index/isolate-index.html ('k') | appengine/isolate/ui/res/js/common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698