Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |