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..6657a3572193bc55356deab2589b7715e395632f 100644 |
| --- a/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| +++ b/chrome/browser/resources/bluetooth_internals/bluetooth_internals.html |
| @@ -2,16 +2,40 @@ |
| <html> |
| <head> |
| - <meta charset="utf-8"> |
| - <title>Bluetooth Internals</title> |
| - <link rel="stylesheet" href="bluetooth_internals.css"> |
| - <script src="bluetooth_internals.js"></script> |
| + <meta charset="utf-8"> |
|
scheib
2016/10/15 03:51:45
No tabs. https://www.chromium.org/developers/web-d
mbrunson
2016/10/18 00:21:25
Done.
|
| + <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/util.js"></script> |
| + <script src="bluetooth_internals.js"></script> |
| </head> |
| <body> |
| - <header> |
| - <h1>Bluetooth Internals</h1> |
| - </header> |
| + <header> |
| + <div class="title"> |
| + Bluetooth Internals |
| + </div> |
| + </header> |
| + <table id="device-table"> |
| + <thead> |
| + <tr> |
| + <th>Name</th> |
| + <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"></td> |
| + </tr> |
| +</template> |
| + |
| </html> |