Index: chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html |
diff --git a/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html b/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html |
deleted file mode 100644 |
index a71818b0cad90dff63db0ca03fe8e476879fd555..0000000000000000000000000000000000000000 |
--- a/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html |
+++ /dev/null |
@@ -1,70 +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="../file_type.js"></script> |
- <script type="text/javascript" src="../metadata_provider.js"></script> |
- <script type="text/javascript" src="../metrics.js"></script> |
- <script type="text/javascript" src="../mock_chrome.js"></script> |
- <script type="text/javascript" src="gallery_demo.js"></script> |
- |
- <style type="text/css"> |
- body { |
- -webkit-user-select: none; |
- margin: 0 |
- } |
- |
- .gallery-frame { |
- width: 100%; |
- height: 100%; |
- border: none; |
- } |
- |
- .gallery-frame.chromebook { |
- width: 1280px; |
- height: 700px; |
- } |
- |
- .debug-buttons { |
- position: absolute; |
- color: white; |
- left: 1px; |
- top: 1px; |
- } |
- |
- .debug-output { |
- position: absolute; |
- left: 4px; |
- top: 28px; |
- text-align: left; |
- color: white; |
- opacity: 0.3; |
- } |
- |
- .debug-output:hover { |
- opacity: 1; |
- } |
- </style> |
- |
-</head> |
-<body> |
- <iframe class="gallery-frame" |
- scrolling="no" |
- src="gallery.html" |
- webkitallowfullscreen |
- onload="loadGallery()"/> |
- </iframe> |
- |
- <div class="debug-buttons"> |
- <input type="checkbox" onchange="toggleSize(this);"/> |
- <span>Chromebook size</span> |
- <button onclick="loadGallery()">Test grid</button> |
- <input type="file" multiple onchange="loadGallery(this.files)"/> |
- </div> |
- |
- <div class="debug-output"></div> |
-</body> |
-</html> |