forked from mirrors/gecko-dev
		
	 077d164484
			
		
	
	
		077d164484
		
	
	
	
	
		
			
			--HG-- extra : commitid : KjuJeuItQXx extra : rebase_source : 4c3b209e916f7fa9fa5a541e91978446c9da2b33
		
			
				
	
	
		
			82 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <!--
 | |
| # This Source Code Form is subject to the terms of the Mozilla Public
 | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
| -->
 | |
| <!DOCTYPE html [
 | |
|   <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
 | |
|   %htmlDTD;
 | |
|   <!ENTITY % netErrorDTD SYSTEM "chrome://global/locale/netError.dtd">
 | |
|   %netErrorDTD;
 | |
|   <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
 | |
|   %globalDTD;
 | |
|   <!ENTITY % restorepageDTD SYSTEM "chrome://browser/locale/aboutSessionRestore.dtd">
 | |
|   %restorepageDTD;
 | |
| ]>
 | |
| 
 | |
| <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 | |
|   <head>
 | |
|     <title>&tabgroupsmigration.tabtitle;</title>
 | |
|     <link rel="stylesheet" href="chrome://global/skin/in-content/info-pages.css" type="text/css" media="all"/>
 | |
|     <link rel="stylesheet" href="chrome://browser/skin/aboutSessionRestore.css" type="text/css" media="all"/>
 | |
|     <link rel="icon" type="image/png" href="chrome://global/skin/icons/warning-16.png"/>
 | |
| 
 | |
|     <script type="application/javascript;version=1.8" src="chrome://browser/content/aboutSessionRestore.js"/>
 | |
|     <script type="application/javascript;version=1.8" src="chrome://browser/content/aboutTabGroupsMigration.js"/>
 | |
|   </head>
 | |
| 
 | |
|   <body dir="&locale.dir;">
 | |
| 
 | |
|     <div class="container restore-chosen">
 | |
| 
 | |
|       <div class="title">
 | |
|         <h1 class="title-text">&tabgroupsmigration.pagetitle2;</h1>
 | |
|       </div>
 | |
|       <div class="description">
 | |
|         <p id="mainDescription">&tabgroupsmigration.description2;<br /><a id="sumolink">&tabgroupsmigration.learnaboutaddons;</a></p>
 | |
|         <button id="show-migrated-bookmarks-button" style="display:none" onclick="showMigratedGroups()">&tabgroupsmigration.bookmarkbutton;</button>
 | |
| 
 | |
|         <p>&tabgroupsmigration.restoredescription;</p>
 | |
|       </div>
 | |
|       <div class="tree-container" available="true">
 | |
|         <xul:tree id="tabList" seltype="single" hidecolumnpicker="true"
 | |
|               onclick="onListClick(event);" onkeydown="onListKeyDown(event);"
 | |
|               _window_label="&restorepage.windowLabel;">
 | |
|           <xul:treecols>
 | |
|             <xul:treecol cycler="true" id="restore" type="checkbox" label="&restorepage.restoreHeader;"/>
 | |
|             <xul:splitter class="tree-splitter"/>
 | |
|             <xul:treecol primary="true" id="title" label="&restorepage.listHeader;" flex="1"/>
 | |
|           </xul:treecols>
 | |
|           <xul:treechildren flex="1"/>
 | |
|         </xul:tree>
 | |
|       </div>
 | |
|       <div class="button-container">
 | |
| #ifdef XP_UNIX
 | |
|         <xul:button id="errorCancel"
 | |
|                 label="&restorepage.closeButton;"
 | |
|                 accesskey="&restorepage.close.access;"
 | |
|                 oncommand="startNewSession();"/>
 | |
|         <xul:button class="primary"
 | |
|                 id="errorTryAgain"
 | |
|                 label="&restorepage.tryagainButton;"
 | |
|                 accesskey="&restorepage.restore.access;"
 | |
|                 oncommand="restoreSession();"/>
 | |
| #else
 | |
|         <xul:button class="primary"
 | |
|                 id="errorTryAgain"
 | |
|                 label="&restorepage.tryagainButton;"
 | |
|                 accesskey="&restorepage.restore.access;"
 | |
|                 oncommand="restoreSession();"/>
 | |
|         <xul:button id="errorCancel"
 | |
|                 label="&restorepage.closeButton;"
 | |
|                 accesskey="&restorepage.close.access;"
 | |
|                 oncommand="startNewSession();"/>
 | |
| #endif
 | |
|       </div>
 | |
|       <!-- holds the session data for when the tab is closed -->
 | |
|       <input type="text" id="sessionData" style="display: none;"/>
 | |
|     </div>
 | |
| 
 | |
|   </body>
 | |
| </html>
 |