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