chore: run protocol tests in separate WebContents (#18202)

This commit is contained in:
Cheng Zhao 2019-05-10 09:51:44 +09:00 committed by GitHub
parent 019b31d084
commit 8de9ba6df6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 317 additions and 708 deletions

File diff suppressed because it is too large Load diff

View file

@ -3,5 +3,20 @@
<script src="../../static/jquery-2.0.3.min.js"></script>
</head>
<body>
<script>
window.ajax = (url, options) => {
return new Promise((resolve, reject) => {
options.url = url
options.cache = false
options.success = (data, status, request) => {
resolve({data, status: request.status, headers: request.getAllResponseHeaders()})
}
options.error = (xhr, errorType, error) => {
reject(error ? error : xhr.status)
}
$.ajax(options)
})
}
</script>
</body>
</html>