OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright 2017 The Chromium Authors. All rights reserved. | 3 Copyright 2017 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <title>Can Make Payment Metrics Test</title> | 9 <title>Can Make Payment Metrics Test</title> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scal
e=1"> | 11 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scal
e=1"> |
12 <link rel="stylesheet" type="text/css" href="style.css"> | 12 <link rel="stylesheet" type="text/css" href="style.css"> |
13 </head> | 13 </head> |
14 <body> | 14 <body> |
15 <button onclick="noQueryShow()" id="noQueryShow">No Query Show Test</button><br> | 15 <button onclick="noQueryShow()" id="noQueryShow">No Query Show Test</button><br> |
16 <button onclick="queryShow()" id="queryShow">Query Show Test</button><br> | 16 <button onclick="queryShow()" id="queryShow">Query Show Test</button><br> |
17 <button onclick="queryNoShow()" id="queryNoShow">Query No Show Test</button><br> | 17 <button onclick="queryNoShow()" id="queryNoShow">Query No Show Test</button><br> |
| 18 <button onclick="abort()" id="abort">Abort</button><br> |
18 <pre id="result"></pre> | 19 <pre id="result"></pre> |
19 <script src="util.js"></script> | 20 <script src="util.js"></script> |
20 <script src="can_make_payment_metrics.js"></script> | 21 <script src="can_make_payment_metrics.js"></script> |
21 </body> | 22 </body> |
22 </html> | 23 </html> |
OLD | NEW |