blob: 85b752dd7921a02eece7b5f54efb9f16e7e951b8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="../resources/mojo-helpers.js"></script>
<script src="resources/presentation-service-mock.js"></script>
<button>click me</button>
<script>
async_test(t => {
presentationServiceMock.then(t.step_func(mockService => {
var button = document.querySelector('button');
// This is receiving the user gesture and runs the callback.
waitForClick(t.step_func(_ => {
new PresentationRequest('https://example.com').start().then(
t.step_func_done(result => {
var e = new PresentationConnectionAvailableEvent(
'connectionavailable', { connection: result });
assert_not_equals(e, null);
assert_equals(e.connection, result);
}));
}), button);
}));
}, "Test that the PresentationConnectionAvailableEvent ctor can take a valid PresentationConnection.")
</script>
</body>
</html>