OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (C) 2011 Google Inc. All rights reserved. | 3 Copyright (C) 2011 Google Inc. All rights reserved. |
4 | 4 |
5 Redistribution and use in source and binary forms, with or without | 5 Redistribution and use in source and binary forms, with or without |
6 modification, are permitted provided that the following conditions | 6 modification, are permitted provided that the following conditions |
7 are met: | 7 are met: |
8 1. Redistributions of source code must retain the above copyright | 8 1. Redistributions of source code must retain the above copyright |
9 notice, this list of conditions and the following disclaimer. | 9 notice, this list of conditions and the following disclaimer. |
10 2. Redistributions in binary form must reproduce the above copyright | 10 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 10 matching lines...) Expand all Loading... | |
21 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 21 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
22 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 22 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
23 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 23 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
24 THE POSSIBILITY OF SUCH DAMAGE. | 24 THE POSSIBILITY OF SUCH DAMAGE. |
25 | 25 |
26 The favicons are from the awesome famfamfam.com, which is the website of Mark | 26 The favicons are from the awesome famfamfam.com, which is the website of Mark |
27 James, a web developer from Birmingham, UK. | 27 James, a web developer from Birmingham, UK. |
28 --> | 28 --> |
29 <html> | 29 <html> |
30 <head> | 30 <head> |
31 <meta http-equiv="Content-Security-Policy" content="default-src 'none'; | |
32 script-src 'self' file: https://ajax.go ogleapis.com; | |
33 style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fonts.googleapis.com; | |
34 font-src http://themes.googleuserconten t.com; | |
35 img-src 'self' https://ajax.googleapis. com http://build.chromium.org https://storage.googleapis.com; | |
36 media-src 'self' http://build.chromium. org https://storage.googleapis.com; | |
37 frame-src 'self' http://build.chromium. org http://test-results.appspot.com https://storage.googleapis.com; | |
38 connect-src 'self' | |
39 http://blink.lc/ | |
40 http://build.chromium.org | |
41 https://codereview.chromium .org | |
42 https://storage.googleapis. com | |
43 http://blink-status.appspot .com | |
44 http://chromium-status.apps pot.com"> | |
45 <title>Garden-O-Matic</title> | 31 <title>Garden-O-Matic</title> |
46 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> | 32 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> |
47 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8. 15/themes/base/jquery-ui.css"> | 33 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8. 15/themes/base/jquery-ui.css"> |
48 <link rel="stylesheet" href="styles/common.css"> | 34 <link rel="stylesheet" href="styles/common.css"> |
49 <link rel="stylesheet" href="styles/onebar.css"> | 35 <link rel="stylesheet" href="styles/onebar.css"> |
50 <link rel="stylesheet" href="styles/failures.css"> | 36 <link rel="stylesheet" href="styles/failures.css"> |
51 <link rel="stylesheet" href="styles/results.css"> | 37 <link rel="stylesheet" href="styles/results.css"> |
52 <link rel="stylesheet" href="styles/notifications.css"> | 38 <link rel="stylesheet" href="styles/notifications.css"> |
53 <link rel="stylesheet" href="styles/pixelzoomer.css"> | 39 <link rel="stylesheet" href="styles/pixelzoomer.css"> |
54 <meta name="viewport" content="width=device-width, user-scalable=no"> | 40 <meta name="viewport" content="width=device-width, user-scalable=no"> |
41 | |
42 <script src="bower_components/platform/platform.js"></script> | |
43 <link rel='import' href="bower_components/polymer/polymer.html"> | |
esprehn
2014/06/22 05:15:20
Maybe be consistent and use double quotes here?
ojan
2014/06/22 22:49:21
Done.
| |
44 <link rel='import' href="polymer-load-warning.html"> | |
45 <link rel='import' href="ui/results-comparison.html"> | |
46 | |
55 </head> | 47 </head> |
56 <body> | 48 <body> |
57 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">< /script> | 49 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">< /script> |
58 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min .js"></script> | 50 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min .js"></script> |
59 <script src="scripts/base.js"></script> | 51 <script src="scripts/base.js"></script> |
60 <script src="scripts/config.js"></script> | 52 <script src="scripts/config.js"></script> |
61 <script src="scripts/net.js"></script> | 53 <script src="scripts/net.js"></script> |
62 <script src="scripts/rollbot.js"></script> | 54 <script src="scripts/rollbot.js"></script> |
63 <script src="scripts/svn-log.js"></script> | 55 <script src="scripts/svn-log.js"></script> |
64 <script src="scripts/treestatus.js"></script> | 56 <script src="scripts/treestatus.js"></script> |
65 <script src="scripts/builders.js"></script> | 57 <script src="scripts/builders.js"></script> |
66 <script src="scripts/checkout.js"></script> | 58 <script src="scripts/checkout.js"></script> |
67 <script src="scripts/results.js"></script> | 59 <script src="scripts/results.js"></script> |
68 <script src="scripts/ui.js"></script> | 60 <script src="scripts/ui.js"></script> |
69 <script src="scripts/model.js"></script> | 61 <script src="scripts/model.js"></script> |
70 <script src="scripts/ui/actions.js"></script> | 62 <script src="scripts/ui/actions.js"></script> |
71 <script src="scripts/ui/failures.js"></script> | 63 <script src="scripts/ui/failures.js"></script> |
72 <script src="scripts/ui/notifications.js"></script> | 64 <script src="scripts/ui/notifications.js"></script> |
73 <script src="scripts/ui/results.js"></script> | 65 <script src="scripts/ui/results.js"></script> |
74 <script src="scripts/controllers.js"></script> | 66 <script src="scripts/controllers.js"></script> |
75 <script src="scripts/pixelzoomer.js"></script> | 67 <script src="scripts/pixelzoomer.js"></script> |
76 <script src="scripts/garden-o-matic.js"></script> | 68 <script src="scripts/garden-o-matic.js"></script> |
77 </body> | 69 </body> |
78 </html> | 70 </html> |
OLD | NEW |