| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html i18n-values="dir:textdirection;"> | 7 <html i18n-values="dir:textdirection;"> |
| 8 <head> | 8 <head> |
| 9 <if expr="0"> | 9 <if expr="0"> |
| 10 <!-- <if ... /if> is removed while flattening HTML. --> | 10 <!-- <if ... /if> is removed while flattening HTML. --> |
| 11 <base href=""> | 11 <base href=""> |
| 12 <script> | 12 <script> |
| 13 // Instruction for enabling loading file manager files remotely (speeds up | 13 // Instruction for enabling loading file manager files remotely (speeds up |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 >[TITLE]</div> | 135 >[TITLE]</div> |
| 136 <div class=dialog-container> | 136 <div class=dialog-container> |
| 137 <div class=dialog-sidebar> | 137 <div class=dialog-sidebar> |
| 138 <div class=close-sidebar><img src='images/close_sidebar.png'></div> | 138 <div class=close-sidebar><img src='images/close_sidebar.png'></div> |
| 139 <list class=roots-list></list> | 139 <list class=roots-list></list> |
| 140 </div> | 140 </div> |
| 141 <div class=dialog-main> | 141 <div class=dialog-main> |
| 142 <div class=dialog-header> | 142 <div class=dialog-header> |
| 143 <div class=open-sidebar><img src='images/open_sidebar.png'></div> | 143 <div class=open-sidebar><img src='images/open_sidebar.png'></div> |
| 144 <div class=breadcrumbs></div> | 144 <div class=breadcrumbs></div> |
| 145 <button class=detail-view tabindex=4 | 145 <!-- The outter div is a hack to remove margin between buttons. --> |
| 146 ><img src='images/icon-detail-view.png'></button | 146 <div><button class="detail-view" tabindex="4" disabled></button></div> |
| 147 ><button class=thumbnail-view tabindex=5 | 147 <div><button class="thumbnail-view" tabindex="5"></button></div> |
| 148 ><img src='images/icon-thumb-view.png'></button> | |
| 149 </div> | 148 </div> |
| 150 <div class=dialog-body> | 149 <div class=dialog-body> |
| 151 <div class=filelist-panel> | 150 <div class=filelist-panel> |
| 152 <div class=list-container> | 151 <div class=list-container> |
| 153 <div class=detail-table tabindex=0></div> | 152 <div class=detail-table tabindex=0></div> |
| 154 <grid class=thumbnail-grid tabindex=0></grid> | 153 <grid class=thumbnail-grid tabindex=0></grid> |
| 155 </div> | 154 </div> |
| 156 <div class=downloads-warning hidden> | 155 <div class=downloads-warning hidden> |
| 157 <img src=images/warning_icon_square_26x26.png> | 156 <img src=images/warning_icon_square_26x26.png> |
| 158 <div></div> | 157 <div></div> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 184 visibleif='this.dialogType_ == "saveas-file"'> | 183 visibleif='this.dialogType_ == "saveas-file"'> |
| 185 <div class=horizontal-spacer></div> | 184 <div class=horizontal-spacer></div> |
| 186 <button class=ok disabled tabindex=2>[OK]</button> | 185 <button class=ok disabled tabindex=2>[OK]</button> |
| 187 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL | 186 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL |
| 188 >[CANCEL]</button> | 187 >[CANCEL]</button> |
| 189 </div> | 188 </div> |
| 190 | 189 |
| 191 <script>init();</script> | 190 <script>init();</script> |
| 192 </body> | 191 </body> |
| 193 </html> | 192 </html> |
| OLD | NEW |