1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37

content / test / data / indexeddb / disk_full_on_commit.html [blame]

<!DOCTYPE html>
<html>
<!--
Copyright 2015 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<title>IDB test that a commit failing due to disk full results in a QuotaError</title>
<script type="text/javascript" src="common.js"></script>
<script>

function test() {
  indexedDBTest(prepareDatabase, startNewTransaction);
}

function prepareDatabase() {
  db = event.target.result;
  objectStore = db.createObjectStore('store');
}

function startNewTransaction() {
  tx = db.transaction('store', 'readwrite');
  tx.objectStore('store').put('value', 'key');
  tx.oncomplete = unexpectedCompleteCallback;
  tx.onabort = function() {
    shouldBeEqualToString("tx.error.name", "QuotaExceededError");
    done();
  };
}

</script>
</head>
<body onLoad="test()">
<div id="status">Starting...</div>
</body>
</html>