| Index: chrome/browser/resources/file_manager/js/image_editor/image_editor_test.html
|
| diff --git a/chrome/browser/resources/file_manager/js/image_editor/image_editor_test.html b/chrome/browser/resources/file_manager/js/image_editor/image_editor_test.html
|
| deleted file mode 100644
|
| index 1730171d2f78d8b38ed18c7ec35da14a048514a2..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/resources/file_manager/js/image_editor/image_editor_test.html
|
| +++ /dev/null
|
| @@ -1,68 +0,0 @@
|
| -<!--
|
| - -- Copyright (c) 2011 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>
|
| -<head>
|
| - <link rel="stylesheet" type="text/css" href="image_editor.css"/>
|
| -
|
| - <script type="text/javascript" src="image_util.js"></script>
|
| - <script type="text/javascript" src="image_buffer.js"></script>
|
| - <script type="text/javascript" src="image_editor.js"></script>
|
| - <script type="text/javascript" src="image_transform.js"></script>
|
| - <script type="text/javascript" src="image_adjust.js"></script>
|
| -
|
| - <script type="text/javascript" src="image_encoder.js"></script>
|
| - <script type="text/javascript" src="exif_encoder.js"></script>
|
| -
|
| - <script type="text/javascript" src="image_editor_test.js"></script>
|
| -
|
| - <style type="text/css">
|
| - #debug-output {
|
| - position: absolute;
|
| - top: 36px;
|
| - right: 2px;
|
| - text-align: right;
|
| - }
|
| -
|
| - .debug-buttons {
|
| - position: absolute;
|
| - left: 2px;
|
| - bottom: 2px;
|
| - }
|
| -
|
| - #imageUrl {
|
| - width: 400px;
|
| - margin-left: 20px;
|
| - }
|
| -
|
| - .ghost {
|
| - z-index: 1000;
|
| - background: white;
|
| - border: 1px solid gray;
|
| - opacity: 0.3;
|
| - }
|
| -
|
| - .ghost:hover {
|
| - opacity: 1;
|
| - }
|
| - </style>
|
| -
|
| -</head>
|
| -<body onload="createEditor();">
|
| - <div id="frame" class="image-editor"></div>
|
| -
|
| - <div class="debug-buttons ghost">
|
| - <span style="margin-left:10px">Sample images:</span>
|
| - <button onclick="load(createTestGrid());">Test grid</button>
|
| - <button onclick="load('images/small.jpg');">Small</button>
|
| - <button onclick="load('images/medium.jpg');">Medium</button>
|
| - <button onclick="load('images/large.jpg');">Large</button>
|
| - <input type="text" id="imageUrl">
|
| - <button onclick="load(getUrlField().value);">Load</button>
|
| - </div>
|
| -
|
| - <div id="debug-output" class="ghost"></div>
|
| -</body>
|
| -</html>
|
|
|