https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e58b9b6c5ed4a0846aea6de7366a492d627f0c12 authored by Robin Berjon on 10 April 2014, 17:37:03 UTC
the HTTP interface expects a date, not a string containing a date
Tip revision: e58b9b6
idbdatabase_createObjectStore7.htm
<!DOCTYPE html>
<title>IDBDatabase.createObjectStore() - create an object store with an unknown optional parameter </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support.js"></script>

<script>

var t = async_test(document.title, {timeout: 10000}),
    open_rq = createdb(t)

open_rq.onupgradeneeded = function(e) {
    var db = e.target.result
    db.createObjectStore("with unknown param", { parameter: 0 });

    t.done()
}

</script>


<div id="log"></div>


back to top