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 11 matching lines...) Expand all Loading... | |
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'; | 31 <meta http-equiv="Content-Security-Policy" content="default-src 'none'; |
32 script-src 'self' file: https://ajax.go ogleapis.com; | 32 script-src 'self' file: https://ajax.googleapis.com 'unsafe-inline'; |
ojan
2014/06/21 21:34:41
This is the only line changed. For the others, I j
| |
33 style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fonts.googleapis.com; | 33 style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fo nts.googleapis.com; |
34 font-src http://themes.googleuserconten t.com; | 34 font-src http://themes.googleusercontent.com; |
35 img-src 'self' https://ajax.googleapis. com http://build.chromium.org https://storage.googleapis.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; | 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; | 37 frame-src 'self' http://build.chromium.org http://test-results.appspot.com h ttps://storage.googleapis.com; |
38 connect-src 'self' | 38 connect-src 'self' |
39 http://blink.lc/ | 39 http://blink.lc/ |
40 http://build.chromium.org | 40 http://build.chromium.org |
41 https://codereview.chromium .org | 41 https://codereview.chromium.org |
42 https://storage.googleapis. com | 42 https://storage.googleapis.com |
43 http://blink-status.appspot .com | 43 http://blink-status.appspot.com |
44 http://chromium-status.apps pot.com"> | 44 http://chromium-status.appspot.com"> |
45 <title>Garden-O-Matic</title> | 45 <title>Garden-O-Matic</title> |
46 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> | 46 <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"> | 47 <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"> | 48 <link rel="stylesheet" href="styles/common.css"> |
49 <link rel="stylesheet" href="styles/onebar.css"> | 49 <link rel="stylesheet" href="styles/onebar.css"> |
50 <link rel="stylesheet" href="styles/failures.css"> | 50 <link rel="stylesheet" href="styles/failures.css"> |
51 <link rel="stylesheet" href="styles/results.css"> | 51 <link rel="stylesheet" href="styles/results.css"> |
52 <link rel="stylesheet" href="styles/notifications.css"> | 52 <link rel="stylesheet" href="styles/notifications.css"> |
53 <link rel="stylesheet" href="styles/pixelzoomer.css"> | 53 <link rel="stylesheet" href="styles/pixelzoomer.css"> |
54 <meta name="viewport" content="width=device-width, user-scalable=no"> | 54 <meta name="viewport" content="width=device-width, user-scalable=no"> |
55 | |
56 <script src="bower_components/platform/platform.js"></script> | |
57 <link rel='import' href="bower_components/polymer/polymer.html"> | |
58 <link rel='import' href="polymer-load-warning.html"> | |
59 <link rel='import' href="ui/results-comparison.html"> | |
60 | |
55 </head> | 61 </head> |
56 <body> | 62 <body> |
57 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">< /script> | 63 <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> | 64 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min .js"></script> |
59 <script src="scripts/base.js"></script> | 65 <script src="scripts/base.js"></script> |
60 <script src="scripts/config.js"></script> | 66 <script src="scripts/config.js"></script> |
61 <script src="scripts/net.js"></script> | 67 <script src="scripts/net.js"></script> |
62 <script src="scripts/rollbot.js"></script> | 68 <script src="scripts/rollbot.js"></script> |
63 <script src="scripts/svn-log.js"></script> | 69 <script src="scripts/svn-log.js"></script> |
64 <script src="scripts/treestatus.js"></script> | 70 <script src="scripts/treestatus.js"></script> |
65 <script src="scripts/builders.js"></script> | 71 <script src="scripts/builders.js"></script> |
66 <script src="scripts/checkout.js"></script> | 72 <script src="scripts/checkout.js"></script> |
67 <script src="scripts/results.js"></script> | 73 <script src="scripts/results.js"></script> |
68 <script src="scripts/ui.js"></script> | 74 <script src="scripts/ui.js"></script> |
69 <script src="scripts/model.js"></script> | 75 <script src="scripts/model.js"></script> |
70 <script src="scripts/ui/actions.js"></script> | 76 <script src="scripts/ui/actions.js"></script> |
71 <script src="scripts/ui/failures.js"></script> | 77 <script src="scripts/ui/failures.js"></script> |
72 <script src="scripts/ui/notifications.js"></script> | 78 <script src="scripts/ui/notifications.js"></script> |
73 <script src="scripts/ui/results.js"></script> | 79 <script src="scripts/ui/results.js"></script> |
74 <script src="scripts/controllers.js"></script> | 80 <script src="scripts/controllers.js"></script> |
75 <script src="scripts/pixelzoomer.js"></script> | 81 <script src="scripts/pixelzoomer.js"></script> |
76 <script src="scripts/garden-o-matic.js"></script> | 82 <script src="scripts/garden-o-matic.js"></script> |
77 </body> | 83 </body> |
78 </html> | 84 </html> |
OLD | NEW |