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

Side by Side Diff: chrome/browser/resources/file_manager/js/image_editor/standalone_test.html

Issue 7552035: Adding simple filters to ChromeOS Image Editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years, 4 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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698