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

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

Issue 8727028: Eliminate use of assignments to innerHTML in File Browser (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Deleted another redundant file Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/file_manager/js/image_editor/standalone_test.html
diff --git a/chrome/browser/resources/file_manager/js/image_editor/standalone_test.html b/chrome/browser/resources/file_manager/js/image_editor/standalone_test.html
deleted file mode 100644
index 003e3a7b7daaa92af90250039b482264c5a2226c..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/file_manager/js/image_editor/standalone_test.html
+++ /dev/null
@@ -1,75 +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>
- <script type="text/javascript" src="standalone_test.js"></script>
-
- <style type="text/css">
- body {
- margin: 0
- }
-
- .editor-frame {
- width: 100%;
- height: 100%;
- border: none;
- }
-
- .debug-output {
- position: absolute;
- top: 34px;
- left: 1px;
- text-align: left;
- }
-
- .debug-buttons {
- position: absolute;
- left: 1px;
- bottom: 1px;
- }
-
- .debug-buttons span {
- margin-left: 10px;
- }
-
- .image-url {
- 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>
- <iframe class="editor-frame"
- scrolling="no"
- src="image_editor.html"
- onload="load(createTestGrid());">
- </iframe>
-
- <div class="debug-buttons ghost">
- <span>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" class="image-url">
- <button onclick="load(getUrlField().value);">Load</button>
- </div>
-
- <div class="debug-output ghost"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698