mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-15 03:00:30 +00:00
d532620f01
1. add a set new mochitests to test cleanup function. By redirecting to another page. By redirecting to another page, when PaymentRequest.show() is called. By reloading By removing/closing the page. 2. remove unnecessary PaymentRequestService.cleanup() call in the test suite.
17 lines
399 B
HTML
17 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Payment Request Testing</title>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
</head>
|
|
<body>
|
|
<h1>blank page.html</h1>
|
|
<script type="text/javascript">
|
|
if(window.parent) {
|
|
window.parent.postMessage("successful", '*');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|