| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values=" | 2 <html i18n-values=" |
| 3 dir:textdirection; | 3 dir:textdirection; |
| 4 hasattribution:hasattribution; | 4 hasattribution:hasattribution; |
| 5 customlogo:customlogo;"> | 5 customlogo:customlogo;"> |
| 6 <head> | 6 <head> |
| 7 <meta charset="utf-8"> | 7 <meta charset="utf-8"> |
| 8 <title i18n-content="title"></title> | 8 <title i18n-content="title"></title> |
| 9 <!-- Don't scale the viewport in either portrait or landscape mode. | 9 <!-- Don't scale the viewport in either portrait or landscape mode. |
| 10 Note that this means apps will be reflowed when rotated (like iPad). | 10 Note that this means apps will be reflowed when rotated (like iPad). |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 <script src="nav_dot.js"></script> | 51 <script src="nav_dot.js"></script> |
| 52 <script src="new_tab.js"></script> | 52 <script src="new_tab.js"></script> |
| 53 <script src="recently_closed.js"></script> | 53 <script src="recently_closed.js"></script> |
| 54 <script src="touch_handler.js"></script> | 54 <script src="touch_handler.js"></script> |
| 55 </head> | 55 </head> |
| 56 | 56 |
| 57 <body> | 57 <body> |
| 58 <div id="notification" class="inactive"> | 58 <div id="notification" class="inactive"> |
| 59 <span></span> | 59 <span></span> |
| 60 <div id="notificationLinks"></div> | 60 <div id="notificationLinks"></div> |
| 61 <button></button> | 61 <button class="close-button"></button> |
| 62 </div> | 62 </div> |
| 63 | 63 |
| 64 <div id="card-slider-frame"> | 64 <div id="card-slider-frame"> |
| 65 <button id="page-switcher-start" class="page-switcher" hidden>‹</button> | 65 <button id="page-switcher-start" class="page-switcher" hidden>‹</button> |
| 66 <div id="page-list"></div> | 66 <div id="page-list"></div> |
| 67 <button id="page-switcher-end" class="page-switcher" hidden>›</button> | 67 <button id="page-switcher-end" class="page-switcher" hidden>›</button> |
| 68 <div id="attribution"> | 68 <div id="attribution"> |
| 69 <span i18n-content="attributionintro"></span> | 69 <span i18n-content="attributionintro"></span> |
| 70 <img id="attribution-img"> | 70 <img id="attribution-img"> |
| 71 </div> | 71 </div> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 82 <span i18n-content="recentlyclosed"></span> | 82 <span i18n-content="recentlyclosed"></span> |
| 83 <div class="disclosure-triangle"></div> | 83 <div class="disclosure-triangle"></div> |
| 84 </button> | 84 </button> |
| 85 | 85 |
| 86 <!-- TODO(estade): may want to remove this. --> | 86 <!-- TODO(estade): may want to remove this. --> |
| 87 <div id="trash"></div> | 87 <div id="trash"></div> |
| 88 </div> | 88 </div> |
| 89 </div> | 89 </div> |
| 90 </body> | 90 </body> |
| 91 </html> | 91 </html> |
| OLD | NEW |