| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be | 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. | 4 -- found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <script type="text/javascript" src="standalone_test.js"></script> | 8 <script type="text/javascript" src="standalone_test.js"></script> |
| 9 | 9 |
| 10 <style type="text/css"> | 10 <style type="text/css"> |
| 11 body { | 11 body { |
| 12 margin: 0 | 12 margin: 0 |
| 13 } | 13 } |
| 14 | 14 |
| 15 .editor-frame { | 15 .editor-frame { |
| 16 width: 100%; | 16 width: 100%; |
| 17 height: 100%; | 17 height: 100%; |
| 18 border: none; | 18 border: none; |
| 19 } | 19 } |
| 20 | 20 |
| 21 .debug-output { | 21 .debug-output { |
| 22 position: absolute; | 22 position: absolute; |
| 23 top: 34px; | 23 top: 34px; |
| 24 right: 1px; | 24 left: 1px; |
| 25 text-align: right; | 25 text-align: left; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .debug-buttons { | 28 .debug-buttons { |
| 29 position: absolute; | 29 position: absolute; |
| 30 left: 1px; | 30 left: 1px; |
| 31 bottom: 1px; | 31 bottom: 1px; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .debug-buttons span { | 34 .debug-buttons span { |
| 35 margin-left: 10px; | 35 margin-left: 10px; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 66 <button onclick="load('images/small.jpg');">Small</button> | 66 <button onclick="load('images/small.jpg');">Small</button> |
| 67 <button onclick="load('images/medium.jpg');">Medium</button> | 67 <button onclick="load('images/medium.jpg');">Medium</button> |
| 68 <button onclick="load('images/large.jpg');">Large</button> | 68 <button onclick="load('images/large.jpg');">Large</button> |
| 69 <input type="text" class="image-url"> | 69 <input type="text" class="image-url"> |
| 70 <button onclick="load(getUrlField().value);">Load</button> | 70 <button onclick="load(getUrlField().value);">Load</button> |
| 71 </div> | 71 </div> |
| 72 | 72 |
| 73 <div class="debug-output ghost"></div> | 73 <div class="debug-output ghost"></div> |
| 74 </body> | 74 </body> |
| 75 </html> | 75 </html> |
| OLD | NEW |