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

Unified 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 files 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Tools/GardeningServer/bower.json ('k') | Tools/GardeningServer/polymer-load-warning.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/garden-o-matic.html
diff --git a/Tools/GardeningServer/garden-o-matic.html b/Tools/GardeningServer/garden-o-matic.html
index 7ed524cfb069451710d294ff70baca7a8f99307e..9b0db8dadc0a67bf5aece3e927dda4c447d456f8 100644
--- a/Tools/GardeningServer/garden-o-matic.html
+++ b/Tools/GardeningServer/garden-o-matic.html
@@ -1,4 +1,3 @@
-<!DOCTYPE html>
<!--
Copyright (C) 2011 Google Inc. All rights reserved.
@@ -26,23 +25,12 @@ THE POSSIBILITY OF SUCH DAMAGE.
The favicons are from the awesome famfamfam.com, which is the website of Mark
James, a web developer from Birmingham, UK.
-->
-<html>
+
+<!DOCTYPE html>
<head>
-<meta http-equiv="Content-Security-Policy" content="default-src 'none';
- script-src 'self' file: https://ajax.googleapis.com;
- style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fonts.googleapis.com;
- font-src http://themes.googleusercontent.com;
- img-src 'self' https://ajax.googleapis.com http://build.chromium.org https://storage.googleapis.com;
- media-src 'self' http://build.chromium.org https://storage.googleapis.com;
- frame-src 'self' http://build.chromium.org http://test-results.appspot.com https://storage.googleapis.com;
- connect-src 'self'
- http://blink.lc/
- http://build.chromium.org
- https://codereview.chromium.org
- https://storage.googleapis.com
- http://blink-status.appspot.com
- http://chromium-status.appspot.com">
<title>Garden-O-Matic</title>
+<meta name="viewport" content="width=device-width, user-scalable=no">
+
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/themes/base/jquery-ui.css">
<link rel="stylesheet" href="styles/common.css">
@@ -51,9 +39,7 @@ James, a web developer from Birmingham, UK.
<link rel="stylesheet" href="styles/results.css">
<link rel="stylesheet" href="styles/notifications.css">
<link rel="stylesheet" href="styles/pixelzoomer.css">
-<meta name="viewport" content="width=device-width, user-scalable=no">
-</head>
-<body>
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
<script src="scripts/base.js"></script>
@@ -73,6 +59,11 @@ James, a web developer from Birmingham, UK.
<script src="scripts/ui/results.js"></script>
<script src="scripts/controllers.js"></script>
<script src="scripts/pixelzoomer.js"></script>
+
+<script src="bower_components/platform/platform.js"></script>
+<link rel="import" href="bower_components/polymer/polymer.html">
+<link rel="import" href="polymer-load-warning.html">
+<link rel="import" href="ui/ct-results-comparison.html">
+
<script src="scripts/garden-o-matic.js"></script>
-</body>
-</html>
+</head>
« no previous file with comments | « Tools/GardeningServer/bower.json ('k') | Tools/GardeningServer/polymer-load-warning.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698