summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/user_actions/user_actions.html
blob: 6085f5e3d3d3547ce5f4440d6ed6d2979ed3ac09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>User Actions Debug Page</title>
  <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
  <link rel="stylesheet" href="user_actions.css">
  <script src="chrome://resources/js/cr.js"></script>
  <script src="chrome://resources/js/util.js"></script>
  <script src="user_actions.js"></script>
</head>
<body>
  <p>
    Listening for user actions...
  </p>
  <table id="user-actions-table">
    <thead><th>User Action</th><th>Timestamp (sec.)</th></thead>
  </table>
</body>
</html>