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

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

Issue 9298009: Implementing full screen mode for video player in Chrome OS File Browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright fix Created 8 years, 10 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="../metadata_provider.js"></script> 8 <script type="text/javascript" src="../metadata_provider.js"></script>
9 <script type="text/javascript" src="../metrics.js"></script> 9 <script type="text/javascript" src="../metrics.js"></script>
10 <script type="text/javascript" src="../mock_chrome.js"></script> 10 <script type="text/javascript" src="../mock_chrome.js"></script>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 .debug-output:hover { 46 .debug-output:hover {
47 opacity: 1; 47 opacity: 1;
48 } 48 }
49 </style> 49 </style>
50 50
51 </head> 51 </head>
52 <body> 52 <body>
53 <iframe class="gallery-frame" 53 <iframe class="gallery-frame"
54 scrolling="no" 54 scrolling="no"
55 src="gallery.html" 55 src="gallery.html"
56 webkitallowfullscreen
56 onload="loadGallery()"/> 57 onload="loadGallery()"/>
57 </iframe> 58 </iframe>
58 59
59 <div class="debug-buttons"> 60 <div class="debug-buttons">
60 <input type="checkbox" onchange="toggleSize(this);"/> 61 <input type="checkbox" onchange="toggleSize(this);"/>
61 <span>Chromebook size</span> 62 <span>Chromebook size</span>
62 <button onclick="loadGallery()">Test grid</button> 63 <button onclick="loadGallery()">Test grid</button>
63 <input type="file" multiple onchange="loadGallery(this.files)"/> 64 <input type="file" multiple onchange="loadGallery(this.files)"/>
64 </div> 65 </div>
65 66
66 <div class="debug-output"></div> 67 <div class="debug-output"></div>
67 </body> 68 </body>
68 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698