| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html class="starting-up" i18n-values="dir:textdirection; | 2 <html class="starting-up" i18n-values="dir:textdirection; |
| 3 bookmarkbarattached:bookmarkbarattached; | 3 bookmarkbarattached:bookmarkbarattached; |
| 4 lang:language"> | 4 lang:language"> |
| 5 <head> | 5 <head> |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <title i18n-content="title"></title> | 7 <title i18n-content="title"></title> |
| 8 <!-- Don't scale the viewport in either portrait or landscape mode. | 8 <!-- Don't scale the viewport in either portrait or landscape mode. |
| 9 Note that this means apps will be reflowed when rotated (like iPad). | 9 Note that this means apps will be reflowed when rotated (like iPad). |
| 10 If we wanted to maintain position we could remove 'maximum-scale' so | 10 If we wanted to maintain position we could remove 'maximum-scale' so |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 <div id="page-list"></div> | 69 <div id="page-list"></div> |
| 70 <button id="page-switcher-end" class="page-switcher custom-appearance" | 70 <button id="page-switcher-end" class="page-switcher custom-appearance" |
| 71 tabindex="2" hidden>› | 71 tabindex="2" hidden>› |
| 72 </button> | 72 </button> |
| 73 <div id="attribution"> | 73 <div id="attribution"> |
| 74 <span i18n-content="attributionintro"></span> | 74 <span i18n-content="attributionintro"></span> |
| 75 <img id="attribution-img"> | 75 <img id="attribution-img"> |
| 76 </div> | 76 </div> |
| 77 </div> | 77 </div> |
| 78 | 78 |
| 79 <div id="app-launcher-promo" hidden> | |
| 80 <div class="apps-promo-text" i18n-content="appsPromoTitle"></div> | |
| 81 <a href="https://chrome.google.com/webstore/launcher" | |
| 82 id="apps-promo-learn-more" class="apps-promo-learn-more" | |
| 83 i18n-content="learn_more"> | |
| 84 </a> | |
| 85 <img src="app_launcher_promo.png"> | |
| 86 <button class="close-button custom-appearance" | |
| 87 id="app-launcher-promo-close-button"> | |
| 88 </button> | |
| 89 </div> | |
| 90 | |
| 91 <div id="footer"> | 79 <div id="footer"> |
| 92 <div id="footer-border"></div> | 80 <div id="footer-border"></div> |
| 93 <div id="footer-content"> | 81 <div id="footer-content"> |
| 94 <div id="logo-img"> | 82 <div id="logo-img"> |
| 95 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO"> | 83 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO"> |
| 96 </div> | 84 </div> |
| 97 | 85 |
| 98 <ul id="dot-list"> | 86 <ul id="dot-list"> |
| 99 </ul> | 87 </ul> |
| 100 | 88 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 </div> | 147 </div> |
| 160 <span class="title"></span> | 148 <span class="title"></span> |
| 161 </div> | 149 </div> |
| 162 | 150 |
| 163 </div> | 151 </div> |
| 164 | 152 |
| 165 <!-- This is used to measure text in the current locale. It is not visible. --> | 153 <!-- This is used to measure text in the current locale. It is not visible. --> |
| 166 <div id="fontMeasuringDiv"></div> | 154 <div id="fontMeasuringDiv"></div> |
| 167 | 155 |
| 168 </html> | 156 </html> |
| OLD | NEW |