<!DOCTYPE html>
<!--
Copyright 2019 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html lang="en">
<head>
<script src="util.js"></script>
<script src="change_payment_method.js"></script>
<meta charset="utf-8">
<meta
name="viewport"
content="width=device-width, initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5">
<title>Test For PaymentRequestEvent.changePaymentMethod()</title>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div>
<button onclick="testNoHandler()" id="testNoHandler">
Test No Handler
</button>
</div>
<div>
<button onclick="testReject()" id="testReject">Test Rejection</button>
</div>
<div>
<button onclick="testThrow()" id="testThrow">Test Throw</button>
</div>
<div>
<button onclick="testDetails()" id="testDetails">Test Details</button>
</div>
<pre id="result"></pre>
</body>
</html>