| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 # Copyright 2016 The LUCI Authors. All rights reserved. | 2 # Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 # Use of this source code is governed by the Apache v2.0 license that can be | 3 # Use of this source code is governed by the Apache v2.0 license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <title>Swarming index Demo</title> | 9 <title>Swarming index Demo</title> |
| 10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| 11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 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"> | 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> | 13 <script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></scri
pt> |
| 14 <script src="../../../node_modules/sinon/pkg/sinon-1.17.2.js"></script> | 14 <script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script> |
| 15 | 15 |
| 16 <script type="text/javascript" charset="utf-8"> | 16 <script type="text/javascript" charset="utf-8"> |
| 17 sinon.format = function(object) {return JSON.stringify(object);} | 17 sinon.format = function(object) {return JSON.stringify(object);} |
| 18 sinon.log = function(message) {console.log(message);}; | 18 sinon.log = function(message) {console.log(message);}; |
| 19 var server = sinon.fakeServer.create(); | 19 var server = sinon.fakeServer.create(); |
| 20 server.autoRespondAfter = 1200; | 20 server.autoRespondAfter = 1200; |
| 21 server.autoRespond = true; | 21 server.autoRespond = true; |
| 22 | 22 |
| 23 var details = { | 23 var details = { |
| 24 server_version: "not-quite-ready", | 24 server_version: "not-quite-ready", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 39 </script> | 39 </script> |
| 40 | 40 |
| 41 <link rel="import" href="swarming-index.html"> | 41 <link rel="import" href="swarming-index.html"> |
| 42 </head> | 42 </head> |
| 43 <body> | 43 <body> |
| 44 | 44 |
| 45 <swarming-index></swarming-index> | 45 <swarming-index></swarming-index> |
| 46 | 46 |
| 47 </body> | 47 </body> |
| 48 </html> | 48 </html> |
| OLD | NEW |