| OLD | NEW |
| 1 <div id="startup-overlay" class="page" hidden> | 1 <dialog id="startup-overlay" class="page"> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <h1 i18n-content="startupPagesOverlay"></h1> | 3 <h1 i18n-content="startupPagesOverlay"></h1> |
| 4 <!-- This <input> element is always hidden. It needs to be here so that | 4 <!-- This <input> element is always hidden. It needs to be here so that |
| 5 its 'controlled-by' attribute will get set when the urls preference is | 5 its 'controlled-by' attribute will get set when the urls preference is |
| 6 managed by a policy, so that the managed prefs bar will show up. | 6 managed by a policy, so that the managed prefs bar will show up. |
| 7 --> | 7 --> |
| 8 <input type="text" pref="session.urls_to_restore_on_startup" hidden> | 8 <input type="text" pref="session.urls_to_restore_on_startup" hidden> |
| 9 <div class="content-area"> | 9 <div class="content-area"> |
| 10 <list id="startupPagesList"></list> | 10 <list id="startupPagesList"></list> |
| 11 </div> | 11 </div> |
| 12 <div class="action-area"> | 12 <div class="action-area"> |
| 13 <span class="hbox stretch"> | 13 <span class="hbox stretch"> |
| 14 <button id="startupUseCurrentButton" | 14 <button id="startupUseCurrentButton" |
| 15 i18n-content="startupUseCurrent"></button> | 15 i18n-content="startupUseCurrent"></button> |
| 16 </span> | 16 </span> |
| 17 <div class="button-strip"> | 17 <div class="button-strip"> |
| 18 <button id="startup-overlay-cancel" i18n-content="cancel"></button> | 18 <button id="startup-overlay-cancel" i18n-content="cancel"></button> |
| 19 <button id="startup-overlay-confirm" class="default-button" | 19 <button id="startup-overlay-confirm" class="default-button" |
| 20 i18n-content="ok"> | 20 i18n-content="ok"> |
| 21 </button> | 21 </button> |
| 22 </div> | 22 </div> |
| 23 </div> | 23 </div> |
| 24 <div id="startupPagesListDropmarker"></div> | 24 <div id="startupPagesListDropmarker"></div> |
| 25 </div> | 25 </dialog> |
| OLD | NEW |