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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 # Copyright 2017 The LUCI Authors. All rights reserved.
3 # Use of this source code is governed by the Apache v2.0 license that can be
4 # found in the LICENSE file.
5 -->
6 <!DOCTYPE html>
7 <html>
8 <head>
9 <title>Isolate index Demo</title>
10 <meta charset="utf-8">
11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
13 <script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></scri pt>
14 <script src="../../../node_modules/skia-common-js/common.js"></script>
15
16 <script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script>
17
18
19 <script type="text/javascript" charset="utf-8">
20 sinon.format = function(object) {return JSON.stringify(object);}
21 sinon.log = function(message) {console.log(message);};
22 var server = sinon.fakeServer.create();
23 server.autoRespondAfter = 1200;
24 server.autoRespond = true;
25
26
27 </script>
28 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html">
29 <link rel="import" href="isolate-index.html">
30 </head>
31 <body>
32
33 <isolate-index
34 client_id="540429983429-ftq2fch22a9puv03lj7sffhvh0e9962r.apps.googleuserconten t.com">
35 </isolate-index>
36
37 </body>
38 </html>
OLDNEW
« 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