mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Update web-platform-tests to revision 66dc9c93f2c8ebd7c8fdc28fae20d92713c97806
This commit is contained in:
parent
e488ea750b
commit
12f4ae132e
1651 changed files with 8123 additions and 14152 deletions
|
@ -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>
|
||||
<!--*/ //-->
|
|
@ -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();
|
|
@ -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>
|
|
@ -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>
|
||||
<!--*/ //-->
|
Loading…
Add table
Add a link
Reference in a new issue