mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
31 lines
717 B
HTML
31 lines
717 B
HTML
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Indexed Database Property Test</title>
|
||
|
|
||
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||
|
|
||
|
<script type="text/javascript;version=1.7">
|
||
|
function runTest() {
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
|
||
|
function messageListener(event) {
|
||
|
eval(event.data);
|
||
|
}
|
||
|
|
||
|
window.addEventListener("message", messageListener, false);
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body onload="runTest();">
|
||
|
<iframe src="event_propagation_iframe.html"></iframe>
|
||
|
</body>
|
||
|
|
||
|
</html>
|