dom/indexedDB/test/test_error_events_abort_transactions.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/indexedDB/test/test_error_events_abort_transactions.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     1.4 +<!--
     1.5 +  Any copyright is dedicated to the Public Domain.
     1.6 +  http://creativecommons.org/publicdomain/zero/1.0/
     1.7 +-->
     1.8 +<html>
     1.9 +<head>
    1.10 +  <title>Indexed Database Property Test</title>
    1.11 +
    1.12 +  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    1.13 +  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    1.14 +
    1.15 +  <script type="text/javascript;version=1.7">
    1.16 +    function runTest() {
    1.17 +      SimpleTest.waitForExplicitFinish();
    1.18 +
    1.19 +      function messageListener(event) {
    1.20 +        eval(event.data);
    1.21 +      }
    1.22 +
    1.23 +      window.addEventListener("message", messageListener, false);
    1.24 +    }
    1.25 +  </script>
    1.26 +
    1.27 +</head>
    1.28 +
    1.29 +<body onload="runTest();">
    1.30 +  <iframe src="error_events_abort_transactions_iframe.html"></iframe>
    1.31 +</body>
    1.32 +
    1.33 +</html>

mercurial