Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection"> | 2 <html i18n-values="dir:textdirection"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"> | 5 <title i18n-content="title"> |
| 6 </title> | 6 </title> |
| 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | |
| 7 <style> | 8 <style> |
| 8 html { | 9 html { |
| 9 height: 100%; | 10 height: 100%; |
| 10 } | 11 } |
|
Dan Beam
2014/12/10 19:49:24
same nit re: html { height: 100%; }
xdai1
2014/12/11 02:59:22
Included the wrong head file. So didn't remove thi
| |
| 11 body { | 12 body { |
| 12 color: #000; | 13 color: #000; |
| 13 font-family: Helvetica, Arial, sans-serif; | |
| 14 background-image: -webkit-linear-gradient(rgb(255, 255, 255) 50%, | 14 background-image: -webkit-linear-gradient(rgb(255, 255, 255) 50%, |
| 15 rgb(236, 244, 255)); | 15 rgb(236, 244, 255)); |
| 16 height: 100%; | 16 height: 100%; |
| 17 padding: 0px; | 17 padding: 0px; |
| 18 margin: 0px; | 18 margin: 0px; |
| 19 } | 19 } |
| 20 #error { | 20 #error { |
| 21 position: absolute; | 21 position: absolute; |
| 22 left: 180px; | 22 left: 180px; |
| 23 top: 150px; | 23 top: 150px; |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 43 <div id="name" jsvalues=".innerText:name"></div> | 43 <div id="name" jsvalues=".innerText:name"></div> |
| 44 <div id="msg" jsvalues=".innerText:msg"></div> | 44 <div id="msg" jsvalues=".innerText:msg"></div> |
| 45 <div id="suggestions" jsselect="suggestionsLearnMore"> | 45 <div id="suggestions" jsselect="suggestionsLearnMore"> |
| 46 <span jsvalues=".innerHTML:msg"></span> | 46 <span jsvalues=".innerHTML:msg"></span> |
| 47 </div> | 47 </div> |
| 48 </div> | 48 </div> |
| 49 </div> | 49 </div> |
| 50 | 50 |
| 51 </body> | 51 </body> |
| 52 </html> | 52 </html> |
| OLD | NEW |