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="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <if expr="is_android or is_ios"> | 6 <if expr="is_android or is_ios"> |
| 7 <meta name="viewport" content="width=device-width, user-scalable=no"> | 7 <meta name="viewport" content="width=device-width, user-scalable=no"> |
| 8 </if> | 8 </if> |
| 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 10 <link rel="stylesheet" href="chrome://physical-web/physical_web.css"> | 10 <link rel="stylesheet" href="chrome://physical-web/physical_web.css"> |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 31 </div> | 31 </div> |
| 32 <div class="physicalWebText"> | 32 <div class="physicalWebText"> |
| 33 <div class="title" jscontent="pageInfoTitle"></div> | 33 <div class="title" jscontent="pageInfoTitle"></div> |
| 34 <div class="resolvedUrl" jscontent="resolvedUrl"></div> | 34 <div class="resolvedUrl" jscontent="resolvedUrl"></div> |
| 35 <div class="description" jscontent="pageInfoDescription"></div> | 35 <div class="description" jscontent="pageInfoDescription"></div> |
| 36 </div> | 36 </div> |
| 37 </a> | 37 </a> |
| 38 | 38 |
| 39 </div> | 39 </div> |
| 40 | 40 |
| 41 <div id="empty-container" i18n-content="emptyMessage" style="visibility:hidden"> | |
|
cco3
2017/02/23 20:07:31
Is there a reason we should do visibility:hidden i
Ran
2017/02/23 20:59:45
Moved css to physical_web.css.
For visibility over
| |
| 42 </div> | |
| 43 | |
| 44 <div id="scan-container" i18n-content="scanningMessage" style="visibility:visibl e"> | |
| 45 </div> | |
| 46 | |
| 41 <script src="chrome://resources/js/i18n_template.js"></script> | 47 <script src="chrome://resources/js/i18n_template.js"></script> |
| 42 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 48 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 43 </body> | 49 </body> |
| 44 </html> | 50 </html> |
| OLD | NEW |