Revision 11df9db151f042f46acb1142b7bced4c584863ff authored by Boris Zbarsky on 09 June 2016, 10:52:29 UTC, committed by James Graham on 09 June 2016, 10:52:53 UTC
Note that we do this here instead of when we suspend timeouts, because it makes
it simpler to handle situations in which a window's document changes while
things are suspended/blocked.

The nsDocumentViewer.cpp is not strictly needed, but avoids some extraneous
calls to SuppressEventHandling with a 0 suppression count.

Upstreamed from https://bugzilla.mozilla.org/show_bug.cgi?id=1267989
1 parent 147e565
Raw File
idbobjectstore_add5.htm
<!DOCTYPE html>
<meta charset="utf-8">
<title>IDBObjectStore.add() - object store's key path is an object attribute </title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support.js"></script>

<script>
    var db,
      t = async_test(),
      record = { test: { obj: { key: 1 } }, property: "data" };

    var open_rq = createdb(t);
    open_rq.onupgradeneeded = function(e) {
        db = e.target.result;
        var objStore = db.createObjectStore("store", { keyPath: "test.obj.key" });
        objStore.add(record);
    };

    open_rq.onsuccess = function(e) {
        var rq = db.transaction("store")
                   .objectStore("store")
                   .get(record.test.obj.key);

        rq.onsuccess = t.step_func(function(e) {
            assert_equals(e.target.result.property, record.property);

            t.done();
        });
    };
</script>

<div id="log"></div>
back to top