Chromium Code Reviews| Index: chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| diff --git a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| index 785afb347cd4071ab1910b39d311f1bb1be3ad79..09f5ec6b47dc57a189e7187f1677706d45437db3 100644 |
| --- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| +++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| @@ -3,15 +3,40 @@ |
| <head> |
| <meta charset="utf-8"> |
| + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>Bluetooth Internals</title> |
| + <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| <link rel="stylesheet" href="bluetooth_internals.css"> |
| + <script src="chrome://resources/js/assert.js"></script> |
| + <script src="chrome://resources/js/util.js"></script> |
| <script src="bluetooth_internals.js"></script> |
| </head> |
| <body> |
| <header> |
| - <h1>Bluetooth Internals</h1> |
| + <div class="title"> |
| + Bluetooth Internals |
| + </div> |
| </header> |
| + <table id="device-table"> |
| + <thead> |
| + <tr> |
| + <th>Name</th> |
|
dpapad
2016/10/24 18:12:26
Are you planning to localize those strings eventua
mbrunson
2016/10/24 19:27:53
Done.
|
| + <th>Address</th> |
| + <th>Latest RSSI</th> |
| + </tr> |
| + </thead> |
| + <tbody id="device-list"> |
| + </tbody> |
| + </table> |
| </body> |
| +<template id="device-row-template"> |
| + <tr class="device-row"> |
| + <td class="device-name" data-label="Name"></td> |
| + <td class="device-address" data-label="Address"></td> |
| + <td class="device-rssi" data-label="Latest RSSI">Unknown</td> |
| + </tr> |
| +</template> |
| + |
| </html> |