mirror of
https://github.com/servo/servo.git
synced 2025-08-24 14:48:21 +01:00
Update web-platform-tests to revision 50d6ee076e94273080d9f3b69be0bf4eeae156d3
This commit is contained in:
parent
3b9055510a
commit
280c87822d
331 changed files with 4209 additions and 866 deletions
|
@ -0,0 +1,26 @@
|
|||
<!doctype html>
|
||||
<title>user activation messagechannel test</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
async_test(function(t) {
|
||||
var channel = new MessageChannel();
|
||||
channel.port1.postMessage(1, {includeUserActivation: true});
|
||||
channel.port1.postMessage(2);
|
||||
var expected_data = 1;
|
||||
channel.port2.onmessage = t.step_func(
|
||||
function(e) {
|
||||
assert_equals(e.data, expected_data);
|
||||
expected_data++;
|
||||
if (e.data == 1) {
|
||||
assert_false(e.userActivation.isActive);
|
||||
assert_false(e.userActivation.hasBeenActive);
|
||||
} else {
|
||||
assert_equals(e.userActivation, null);
|
||||
t.done();
|
||||
}
|
||||
});
|
||||
channel.port2.start();
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue