OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <!-- | |
4 Copyright 2016 The Chromium Authors. All rights reserved. | |
5 Use of this source code is governed by a BSD-style license that can be | |
6 found in the LICENSE file. | |
7 --> | |
8 <head> | |
9 <meta http-equiv="Pragma" content="no-cache"> | |
10 <meta http-equiv="Expires" content="-1"> | |
11 <title>{{title}}</title> | |
12 <script type="text/javascript" src="common.js"></script> | |
13 <script type="text/javascript" src="example.js"></script> | |
14 </head> | |
15 | |
16 <body {{attrs}}> | |
17 <h1>{{title}}</h1> | |
18 <h2>Status: <code id="statusField">NO-STATUS</code></h2> | |
binji
2016/07/18 18:46:28
We usually try to have a brief description of what
adrian.belgun
2016/07/19 13:57:22
Done.
| |
19 <div id="listener"></div> | |
20 <div id="log" style="height: 400px; overflow-y: scroll;"></div> | |
21 </body> | |
22 </html> | |
OLD | NEW |