Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf8"> | 4 <meta charset="utf8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 | 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 9 | |
| 10 <style> | |
| 11 html, | |
| 12 body { | |
| 13 height: 100%; | |
| 14 margin: 0; | |
| 15 } | |
| 16 | |
| 17 body { | |
| 18 background: #f2f2f2; | |
| 19 font-family: Roboto; | |
| 20 font-size: 13px; | |
| 21 display: flex; | |
| 22 flex-direction:column; | |
| 23 } | |
| 24 | |
| 25 #toolbar { | |
| 26 flex: 0 0 56px; | |
| 27 } | |
| 28 | |
| 29 #history-card-manager { | |
| 30 flex: 1 0 0; | |
| 31 overflow: auto; | |
| 32 } | |
| 33 </style> | |
| 9 </head> | 34 </head> |
| 10 | 35 |
| 11 <body> | 36 <body> |
| 12 <h1 i18n-content="title"></h1> | 37 <history-toolbar class="paper-header" id="toolbar"></history-toolbar> |
| 38 <history-card-manager id="history-card-manager"></history-card-manager> | |
| 39 | |
| 13 <link rel="import" href="chrome://resources/html/polymer_config.html"> | 40 <link rel="import" href="chrome://resources/html/polymer_config.html"> |
| 41 <link rel="import" href="chrome://resources/html/cr.html"> | |
| 42 <link rel="import" href="chrome://resources/html/util.html"> | |
| 43 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html" > | |
|
tsergeant
2016/01/22 02:37:11
There shouldn't be any need to include Polymer her
hsampson
2016/01/22 05:05:03
Done.
| |
| 44 <link rel="import" href="chrome://history/history_card_manager.html"> | |
| 45 <link rel="import" href="chrome://history/history_toolbar.html"> | |
| 46 | |
| 47 <script src="history.js"></script> | |
| 14 | 48 |
| 15 <!-- Prepare strings and perform i18n substitutions. --> | 49 <!-- Prepare strings and perform i18n substitutions. --> |
| 16 <link rel="import" href="chrome://resources/html/load_time_data.html"> | 50 <link rel="import" href="chrome://resources/html/load_time_data.html"> |
| 17 <script src="strings.js"></script> | 51 <script src="strings.js"></script> |
| 18 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 52 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 19 </body> | 53 </body> |
| 20 | 54 |
| 21 </html> | 55 </html> |
| OLD | NEW |