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

Side by Side Diff: Tools/GardeningServer/garden-o-matic.html

Issue 350563002: Port first garden-o-matic component over to polymer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add console.error Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html>
2 <!-- 1 <!--
3 Copyright (C) 2011 Google Inc. All rights reserved. 2 Copyright (C) 2011 Google Inc. All rights reserved.
4 3
5 Redistribution and use in source and binary forms, with or without 4 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions 5 modification, are permitted provided that the following conditions
7 are met: 6 are met:
8 1. Redistributions of source code must retain the above copyright 7 1. Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer. 8 notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright 9 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the 10 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution. 11 documentation and/or other materials provided with the distribution.
13 12
14 THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' 13 THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
15 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 14 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS 16 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 17 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 18 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 19 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 20 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 21 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 22 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24 THE POSSIBILITY OF SUCH DAMAGE. 23 THE POSSIBILITY OF SUCH DAMAGE.
25 24
26 The favicons are from the awesome famfamfam.com, which is the website of Mark 25 The favicons are from the awesome famfamfam.com, which is the website of Mark
27 James, a web developer from Birmingham, UK. 26 James, a web developer from Birmingham, UK.
28 --> 27 -->
29 <html> 28
29 <!DOCTYPE html>
esprehn 2014/06/23 05:25:04 You can't put a comment before the doctype, that c
ojan 2014/06/23 05:43:32 False. I prefer all the real content being below
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>
32 <meta name="viewport" content="width=device-width, user-scalable=no">
33
46 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> 34 <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"> 35 <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"> 36 <link rel="stylesheet" href="styles/common.css">
49 <link rel="stylesheet" href="styles/onebar.css"> 37 <link rel="stylesheet" href="styles/onebar.css">
50 <link rel="stylesheet" href="styles/failures.css"> 38 <link rel="stylesheet" href="styles/failures.css">
51 <link rel="stylesheet" href="styles/results.css"> 39 <link rel="stylesheet" href="styles/results.css">
52 <link rel="stylesheet" href="styles/notifications.css"> 40 <link rel="stylesheet" href="styles/notifications.css">
53 <link rel="stylesheet" href="styles/pixelzoomer.css"> 41 <link rel="stylesheet" href="styles/pixelzoomer.css">
54 <meta name="viewport" content="width=device-width, user-scalable=no"> 42
55 </head>
56 <body>
57 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">< /script> 43 <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> 44 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min .js"></script>
59 <script src="scripts/base.js"></script> 45 <script src="scripts/base.js"></script>
60 <script src="scripts/config.js"></script> 46 <script src="scripts/config.js"></script>
61 <script src="scripts/net.js"></script> 47 <script src="scripts/net.js"></script>
62 <script src="scripts/rollbot.js"></script> 48 <script src="scripts/rollbot.js"></script>
63 <script src="scripts/svn-log.js"></script> 49 <script src="scripts/svn-log.js"></script>
64 <script src="scripts/treestatus.js"></script> 50 <script src="scripts/treestatus.js"></script>
65 <script src="scripts/builders.js"></script> 51 <script src="scripts/builders.js"></script>
66 <script src="scripts/checkout.js"></script> 52 <script src="scripts/checkout.js"></script>
67 <script src="scripts/results.js"></script> 53 <script src="scripts/results.js"></script>
68 <script src="scripts/ui.js"></script> 54 <script src="scripts/ui.js"></script>
69 <script src="scripts/model.js"></script> 55 <script src="scripts/model.js"></script>
70 <script src="scripts/ui/actions.js"></script> 56 <script src="scripts/ui/actions.js"></script>
71 <script src="scripts/ui/failures.js"></script> 57 <script src="scripts/ui/failures.js"></script>
72 <script src="scripts/ui/notifications.js"></script> 58 <script src="scripts/ui/notifications.js"></script>
73 <script src="scripts/ui/results.js"></script> 59 <script src="scripts/ui/results.js"></script>
74 <script src="scripts/controllers.js"></script> 60 <script src="scripts/controllers.js"></script>
75 <script src="scripts/pixelzoomer.js"></script> 61 <script src="scripts/pixelzoomer.js"></script>
62
63 <script src="bower_components/platform/platform.js"></script>
64 <link rel="import" href="bower_components/polymer/polymer.html">
65 <link rel="import" href="polymer-load-warning.html">
66 <link rel="import" href="ui/ct-results-comparison.html">
67
76 <script src="scripts/garden-o-matic.js"></script> 68 <script src="scripts/garden-o-matic.js"></script>
77 </body> 69 </head>
78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698