summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/examples/api/messaging/timer/popup.html
blob: f3dbc06b10c0437d44a1560234b499553f279217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<head>
<style>
tr {
  white-space: nowrap;
}
.results {
  text-align: right;
  min-width: 6em;
  color: black;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<table>
  <tr>
    <td><button id="testRequest">Measure sendRequest</button></td>
    <td id="resultsRequest" class="results">(results)</td>
  </tr>
  <tr>
    <td><button id="testConnect">Measure postMessage</button></td>
    <td id="resultsConnect" class="results">(results)</td>
  </tr>
</table>
</body>