| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 ------ | 3 ------ |
| 4 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <html i18n-values="dir:textdirection;"> | 8 <html i18n-values="dir:textdirection;"> |
| 9 <head> | 9 <head> |
| 10 <title>Wallpaper Picker</title> | 10 <title>Wallpaper Picker</title> |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 <div class="page"> | 62 <div class="page"> |
| 63 <div id="close-error" class="close-overlay"></div> | 63 <div id="close-error" class="close-overlay"></div> |
| 64 <span class="error-message"></span> | 64 <span class="error-message"></span> |
| 65 <a id="learn-more" i18n-content="learnMore" target="_blank"></a> | 65 <a id="learn-more" i18n-content="learnMore" target="_blank"></a> |
| 66 </div> | 66 </div> |
| 67 </div> | 67 </div> |
| 68 <div id="wallpaper-selection-container" class="overlay-container" hidden> | 68 <div id="wallpaper-selection-container" class="overlay-container" hidden> |
| 69 <div class="page"> | 69 <div class="page"> |
| 70 <div id="close-wallpaper-selection" class="close-overlay"></div> | 70 <div id="close-wallpaper-selection" class="close-overlay"></div> |
| 71 <div id="content"> | 71 <div id="content"> |
| 72 <input id="file-selector" type="file" size="80" accept="image/jpeg"> | 72 <input id="file-selector" type="file" size="80" |
| 73 accept="image/jpeg, image/png"> |
| 73 <div i18n-content="positionLabel"></div> | 74 <div i18n-content="positionLabel"></div> |
| 74 <select id="set-wallpaper-layout" disabled> | 75 <select id="set-wallpaper-layout" disabled> |
| 75 <option value="CENTER" i18n-content="centerLayout"></option> | 76 <option value="CENTER" i18n-content="centerLayout"></option> |
| 76 <option selected="selected" value="CENTER_CROPPED" | 77 <option selected="selected" value="CENTER_CROPPED" |
| 77 i18n-content="centerCroppedLayout"></option> | 78 i18n-content="centerCroppedLayout"></option> |
| 78 <option value="STRETCH" i18n-content="stretchLayout"></option> | 79 <option value="STRETCH" i18n-content="stretchLayout"></option> |
| 79 </select> | 80 </select> |
| 80 <div id="warning"> | 81 <div id="warning"> |
| 81 <img class="remember-icon"> | 82 <img class="remember-icon"> |
| 82 <span i18n-content="customWallpaperWarning"></span> | 83 <span i18n-content="customWallpaperWarning"></span> |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 <div id="surprise-me" hidden> | 118 <div id="surprise-me" hidden> |
| 118 <div id="checkbox"></div> | 119 <div id="checkbox"></div> |
| 119 <span i18n-content="surpriseMeLabel"></span> | 120 <span i18n-content="surpriseMeLabel"></span> |
| 120 </div> | 121 </div> |
| 121 </div> | 122 </div> |
| 122 </div> | 123 </div> |
| 123 </div> | 124 </div> |
| 124 </div> | 125 </div> |
| 125 </body> | 126 </body> |
| 126 </html> | 127 </html> |
| OLD | NEW |