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

Unified Diff: chrome/browser/resources/chromeos/wallpaper_manager/harness.html

Issue 10698099: Implement the new wallpaper manager launcher window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix presubmit errors Created 8 years, 5 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
Index: chrome/browser/resources/chromeos/wallpaper_manager/harness.html
diff --git a/chrome/browser/resources/chromeos/wallpaper_manager/harness.html b/chrome/browser/resources/chromeos/wallpaper_manager/harness.html
new file mode 100644
index 0000000000000000000000000000000000000000..c50c43a13c741cfa44e49c7cf32aea268ddbc31b
--- /dev/null
+++ b/chrome/browser/resources/chromeos/wallpaper_manager/harness.html
@@ -0,0 +1,36 @@
+<!DOCTYPE HTML>
+<!--
+------
+Copyright (c) 2012 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<html i18n-values="dir:textdirection;">
+<head>
+ <title>Wallpaper Manager Test Harness</title>
+ <style>
+ #dialog {
+ position: absolute;
+ width: 800px;
+ height: 640px;
+ border: none;
+ -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
+ }
+ #title-bar {
+ background-color: gray;
+ width: 800px;
+ height: 30px;
+ }
+ </style>
+</head>
+<body>
+ <div id=screen>
+ <div id=container>
+ <div id=title-bar>
+ </div>
+ <iframe id=dialog src="main.html"></iframe>
+ </div>
+ </div>
+ <script src="js/mock_chrome.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698