Revision b052f6c300906efa13713a165576486a0f8ce345 authored by ffxbld on 31 May 2012, 22:47:40 UTC, committed by ffxbld on 31 May 2012, 22:47:40 UTC
1 parent c08639d
Raw File
browser_forgetThisSiteAdd.html
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
  <head>
    <title>Indexed Database Test</title>

    <script type="text/javascript;version=1.7">
      function testSteps()
      {
        let request = mozIndexedDB.open("browser_forgetThisSite.js", 11);
        request.onerror = grabEventAndContinueHandler;
        request.onupgradeneeded = grabEventAndContinueHandler;
        let event = yield;

        if (event.type == "error") {
          testException = event.target.errorCode;
        }
        else {
          let db = event.target.result;

          testResult = db.version;

          event.target.transaction.oncomplete = finishTest;
          yield;
        }

        yield;
      }
    </script>

    <script type="text/javascript;version=1.7" src="browserHelpers.js"></script>

  </head>

  <body onload="runTest();" onunload="finishTestNow();"></body>

</html>
back to top