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

Side by Side 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: Nits 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <!--
3 ------
4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <html i18n-values="dir:textdirection;">
9 <head>
10 <title>Wallpaper Manager Test Harness</title>
11 <style>
12 #dialog {
13 position: absolute;
14 width: 800px;
15 height: 640px;
16 border: none;
17 -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
18 }
19 #title-bar {
20 background-color: gray;
21 width: 800px;
22 height: 30px;
23 }
24 </style>
25 </head>
26 <body>
27 <div id=screen>
28 <div id=container>
29 <div id=title-bar>
30 </div>
31 <iframe id=dialog src="main.html"></iframe>
32 </div>
33 </div>
34 <script src="js/mock_chrome.js"></script>
flackr 2012/07/04 22:20:57 You could probably conditionally include mock_chro
bshe 2012/07/05 13:54:50 I was just hoping to make the mock looks as real a
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698