OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html id="template_root" i18n-values="dir:textdirection"> | 2 <html id="template_root" i18n-values="dir:textdirection"> |
3 <head> | 3 <head> |
4 <title i18n-content="title"> | 4 <title i18n-content="title"> |
5 </title> | 5 </title> |
6 <style> | 6 <style> |
7 html { | 7 html { |
8 height: 100%; | 8 height: 100%; |
9 } | 9 } |
10 body { | 10 body { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 .hidden { | 95 .hidden { |
96 display: none; | 96 display: none; |
97 } | 97 } |
98 | 98 |
99 .splitter { | 99 .splitter { |
100 border-top: 1px solid #DDD; | 100 border-top: 1px solid #DDD; |
101 height: 1px; | 101 height: 1px; |
102 } | 102 } |
103 </style> | 103 </style> |
104 <script src="../shared/js/local_strings.js"></script> | 104 <script src="../../../../ui/webui/resources/js/local_strings.js"></script> |
105 | 105 |
106 <script> | 106 <script> |
107 var localStrings = new LocalStrings(); | 107 var localStrings = new LocalStrings(); |
108 | 108 |
109 function sendCommand(cmd) { | 109 function sendCommand(cmd) { |
110 window.domAutomationController.setAutomationId(1); | 110 window.domAutomationController.setAutomationId(1); |
111 window.domAutomationController.send(cmd); | 111 window.domAutomationController.send(cmd); |
112 } | 112 } |
113 | 113 |
114 // Show the offline page. | 114 // Show the offline page. |
(...skipping 29 matching lines...) Expand all Loading... |
144 </div> | 144 </div> |
145 <div id="lower" class="hidden"> | 145 <div id="lower" class="hidden"> |
146 <div class="activation_message"> | 146 <div class="activation_message"> |
147 <div class="splitter"></div> | 147 <div class="splitter"></div> |
148 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio
n_in_offline.html" | 148 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activatio
n_in_offline.html" |
149 id="carrierPage" frameborder="0"></iframe> | 149 id="carrierPage" frameborder="0"></iframe> |
150 </div> | 150 </div> |
151 </div> | 151 </div> |
152 </body> | 152 </body> |
153 </html> | 153 </html> |
OLD | NEW |