Update web-platform-tests to revision 66dc9c93f2c8ebd7c8fdc28fae20d92713c97806

This commit is contained in:
WPT Sync Bot 2019-06-26 10:22:48 +00:00
parent e488ea750b
commit 12f4ae132e
1651 changed files with 8123 additions and 14152 deletions

View file

@ -1,34 +0,0 @@
<!--
try {
var source = new EventSource("http://this is invalid/")
postMessage([false, 'no exception thrown'])
source.close()
} catch(e) {
postMessage([true, e.code])
}
/*-->
<!DOCTYPE html>
<html>
<head>
<title>dedicated worker - EventSource: constructor (invalid URL)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
var test = async_test()
test.step(function() {
var worker = new Worker('#')
worker.onmessage = function(e) {
test.step(function() {
assert_true(e.data[0], e.data[1])
assert_equals(e.data[1], DOMException.SYNTAX_ERR, 'e.code')
})
test.done()
}
})
</script>
</body>
</html>
<!--*/ //-->

View file

@ -0,0 +1,9 @@
// META: global=window,worker
// META: title=EventSource: constructor (invalid URL)
// META: script=/resources/idlharness.js
test(() => {
assert_throws('SyntaxError', () => { new EventSource("http://this is invalid/"); });
});
done();

View file

@ -1,16 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>EventSource: constructor (invalid URL)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
test(function() {
assert_throws("SyntaxError", function() { new EventSource("http://this is invalid/") })
})
</script>
</body>
</html>

View file

@ -1,37 +0,0 @@
<!--
onconnect = function(e) {
try {
var port = e.ports[0]
var source = new EventSource("http://this is invalid/")
port.postMessage([false, 'no exception thrown'])
source.close()
} catch(e) {
port.postMessage([true, e.code])
}
}
/*-->
<!DOCTYPE html>
<html>
<head>
<title>shared worker - EventSource: constructor (invalid URL)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
var test = async_test()
test.step(function() {
var worker = new SharedWorker('#')
worker.port.onmessage = function(e) {
test.step(function() {
assert_true(e.data[0], e.data[1])
assert_equals(e.data[1], DOMException.SYNTAX_ERR, 'e.code')
})
test.done()
}
})
</script>
</body>
</html>
<!--*/ //-->