| Index: chrome/browser/resources/file_manager/main.html
|
| diff --git a/chrome/browser/resources/file_manager/main.html b/chrome/browser/resources/file_manager/main.html
|
| index 129340a0ce122f9cd8e927d8e8ebb79c121df061..ce91250a36cb3c3f01be4e1567ae539ed684b79a 100644
|
| --- a/chrome/browser/resources/file_manager/main.html
|
| +++ b/chrome/browser/resources/file_manager/main.html
|
| @@ -205,7 +205,7 @@
|
| <menuitem command="#paste" visibleif="full-page"></menuitem>
|
| <hr visibleif="full-page">
|
| <menuitem command="#rename"></menuitem>
|
| - <menuitem command="#delete" i18n-content=DELETE_BUTTON_LABEL></menuitem>
|
| + <menuitem command="#delete" i18n-content="DELETE_BUTTON_LABEL"></menuitem>
|
| <menuitem command="#zip-selection"></menuitem>
|
| <hr visibleif="saveas-file full-page">
|
| <menuitem command="#newfolder"
|
| @@ -230,9 +230,9 @@
|
| command="#change-default-app"></menuitem>
|
| <hr id="drive-separator">
|
| <menuitem id="drive-sync-settings"
|
| - i18n-content=DRIVE_MOBILE_CONNECTION_OPTION></menuitem>
|
| + i18n-content="DRIVE_MOBILE_CONNECTION_OPTION"></menuitem>
|
| <menuitem id="drive-hosted-settings"
|
| - i18n-content=DRIVE_SHOW_HOSTED_FILES_OPTION></menuitem>
|
| + i18n-content="DRIVE_SHOW_HOSTED_FILES_OPTION"></menuitem>
|
| <hr command="#drive-clear-local-cache">
|
| <menuitem id="gear-menu-drive-clear-local-cache"
|
| command="#drive-clear-local-cache"></menuitem>
|
| @@ -271,7 +271,7 @@
|
| <menuitem command="#cut"></menuitem>
|
| <menuitem command="#copy"></menuitem>
|
| <menuitem command="#paste"></menuitem>
|
| - <menuitem command="#delete" i18n-content=DELETE_BUTTON_LABEL></menuitem>
|
| + <menuitem command="#delete" i18n-content="DELETE_BUTTON_LABEL"></menuitem>
|
| </menu>
|
|
|
| <div class="dialog-container">
|
| @@ -320,7 +320,7 @@
|
| </button>
|
| </div>
|
| </div>
|
| - <div class=dialog-body>
|
| + <div class="dialog-body">
|
| <div class="main-panel">
|
| <!-- The middle bar and spilitter are hidden by default, and will be shown by script if necessary. -->
|
| <div class="dialog-middlebar-contents" hidden>
|
| @@ -329,7 +329,7 @@
|
| <tree id="directory-tree" tabindex="8"></tree>
|
| </div>
|
| <div class="splitter" id="middlebar-splitter" hidden></div>
|
| - <div class=filelist-panel>
|
| + <div class="filelist-panel">
|
| <div class="drive-welcome header"></div>
|
| <div class="volume-warning" id="volume-space-warning" hidden></div>
|
| <div class="volume-warning" id="drive-auth-failed-warning" hidden>
|
| @@ -337,16 +337,16 @@
|
| <div class="drive-text" id="drive-auth-failed-warning-text"></div>
|
| </div>
|
| <div id="list-container">
|
| - <div class=detail-table id="detail-table" tabindex=1 autofocus>
|
| + <div class="detail-table" id="detail-table" tabindex="1" autofocus>
|
| </div>
|
| - <grid class=thumbnail-grid tabindex=1></grid>
|
| + <grid class="thumbnail-grid" tabindex="1"></grid>
|
| <div id="spinner-container">
|
| <div id="spinner-with-text"></div>
|
| </div>
|
| <div class="drive-welcome page"></div>
|
| <div id="no-search-results"></div>
|
| </div>
|
| - <div class=downloads-warning hidden></div>
|
| + <div class="downloads-warning" hidden></div>
|
| </div>
|
| </div>
|
| <div class="preview-panel progressable" visibility="hidden">
|
| @@ -370,15 +370,15 @@
|
| <button id="delete-button" command="#delete" tabindex="4"
|
| i18n-values="aria-label:DELETE_BUTTON_LABEL"></button>
|
| </div>
|
| - <div class=preparing-label i18n-content=PREPARING_LABEL></div>
|
| - <div class=progress-bar>
|
| - <div class=progress-track></div>
|
| + <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
|
| + <div class="progress-bar">
|
| + <div class="progress-track"></div>
|
| </div>
|
| <div class="right buttonbar" id="open-panel"
|
| visibleif="open-file open-multi-file">
|
| <select class="file-type"></select>
|
| - <button class=ok disabled tabindex="7"></button>
|
| - <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button>
|
| + <button class="ok" disabled tabindex="7"></button>
|
| + <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></button>
|
| </div>
|
| </div>
|
| <div id="unmounted-panel"></div>
|
| @@ -392,23 +392,23 @@
|
| <div class="dialog-footer progressable" tabindex="-1"
|
| visibleif="saveas-file folder">
|
| <div class="left">
|
| - <button id="new-folder" i18n-content=NEW_FOLDER_BUTTON_LABEL
|
| + <button id="new-folder" i18n-content="NEW_FOLDER_BUTTON_LABEL"
|
| visibleif="saveas-file folder" command="#newfolder"
|
| tabindex="5">
|
| </button>
|
| <div id="filename-input-box">
|
| - <div class=filename-label i18n-content=FILENAME_LABEL></div>
|
| - <input type=text spellcheck=false tabindex="6">
|
| + <div class="filename-label" i18n-content="FILENAME_LABEL"></div>
|
| + <input type="text" spellcheck="false" tabindex="6">
|
| </div>
|
| - <div class=preparing-label i18n-content=PREPARING_LABEL></div>
|
| - <div class=progress-bar>
|
| - <div class=progress-track></div>
|
| + <div class="preparing-label" i18n-content="PREPARING_LABEL"></div>
|
| + <div class="progress-bar">
|
| + <div class="progress-track"></div>
|
| </div>
|
| </div>
|
| <div class="right buttonbar">
|
| <select class="file-type"></select>
|
| - <button class=ok disabled tabindex="7"></button>
|
| - <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button>
|
| + <button class="ok" disabled tabindex="7"></button>
|
| + <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></button>
|
| </div>
|
| </div>
|
| <div id="drag-container"></div>
|
|
|