<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<
html>
<
head>
<
title>Indexed Database Property Test</
title>
<
script src=
"/tests/SimpleTest/SimpleTest.js"></
script>
<
link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
<
script type=
"text/javascript">
function runTest() {
SimpleTest.waitForExplicitFinish();
function messageListener(event) {
// eslint-disable-next-line no-eval
eval(event.data);
}
window.addEventListener(
"message", messageListener);
}
</
script>
</
head>
<
body onload=
"runTest();">
<
iframe src=
"exceptions_in_events_iframe.html"></
iframe>
</
body>
</
html>