| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 <script src="card_slider.js"></script> | 48 <script src="card_slider.js"></script> |
| 49 <script src="grabber.js"></script> | 49 <script src="grabber.js"></script> |
| 50 <script src="nav_dot.js"></script> | 50 <script src="nav_dot.js"></script> |
| 51 <script src="new_tab.js"></script> | 51 <script src="new_tab.js"></script> |
| 52 <script src="recently_closed.js"></script> | 52 <script src="recently_closed.js"></script> |
| 53 <script src="touch_handler.js"></script> | 53 <script src="touch_handler.js"></script> |
| 54 </head> | 54 </head> |
| 55 | 55 |
| 56 <body> | 56 <body> |
| 57 <div id="notification" class="inactive"> |
| 58 <span></span> |
| 59 <div id="notificationLinks"></div> |
| 60 <button></button> |
| 61 </div> |
| 62 |
| 57 <div id="card-slider-frame"> | 63 <div id="card-slider-frame"> |
| 58 <div id="page-list"> | 64 <div id="page-list"> |
| 59 </div> | 65 </div> |
| 60 <div id="attribution"> | 66 <div id="attribution"> |
| 61 <span i18n-content="attributionintro"></span> | 67 <span i18n-content="attributionintro"></span> |
| 62 <img id="attribution-img"> | 68 <img id="attribution-img"> |
| 63 </div> | 69 </div> |
| 64 </div> | 70 </div> |
| 65 <div id="footer"> | 71 <div id="footer"> |
| 66 <div id="footer-border"></div> | 72 <div id="footer-border"></div> |
| 67 <div id="footer-content"> | 73 <div id="footer-content"> |
| 68 <img id="logo-img"> | 74 <img id="logo-img"> |
| 69 | 75 |
| 70 <ul id="dot-list"> | 76 <ul id="dot-list"> |
| 71 </ul> | 77 </ul> |
| 72 | 78 |
| 73 <button id="recently-closed-menu-button"> | 79 <button id="recently-closed-menu-button"> |
| 74 <span i18n-content="recentlyclosed"></span> | 80 <span i18n-content="recentlyclosed"></span> |
| 75 <div class="disclosure-triangle"></div> | 81 <div class="disclosure-triangle"></div> |
| 76 </button> | 82 </button> |
| 77 | 83 |
| 78 <!-- TODO(estade): may want to remove this. --> | 84 <!-- TODO(estade): may want to remove this. --> |
| 79 <div id="trash"></div> | 85 <div id="trash"></div> |
| 80 </div> | 86 </div> |
| 81 </div> | 87 </div> |
| 82 </body> | 88 </body> |
| 83 </html> | 89 </html> |
| OLD | NEW |