Index: LayoutTests/imported/web-platform-tests/IndexedDB/idbobjectstore_put7.htm |
diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/idbobjectstore_put7.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/idbobjectstore_put7.htm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..45ff899171cdf338cb543c987ba55e557b62a1a5 |
--- /dev/null |
+++ b/LayoutTests/imported/web-platform-tests/IndexedDB/idbobjectstore_put7.htm |
@@ -0,0 +1,47 @@ |
+<!DOCTYPE html> |
+<meta charset="utf-8"> |
+<title>IDBObjectStore.put() - autoIncrement and out-of-line keys </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 = { property: "data" }, |
+ expected_keys = [ 1, 2, 3, 4 ]; |
+ |
+ var open_rq = createdb(t); |
+ open_rq.onupgradeneeded = function(e) { |
+ db = e.target.result; |
+ var objStore = db.createObjectStore("store", { autoIncrement: true }); |
+ |
+ objStore.put(record); |
+ objStore.put(record); |
+ objStore.put(record); |
+ objStore.put(record); |
+ }; |
+ |
+ open_rq.onsuccess = function(e) { |
+ var actual_keys = [], |
+ rq = db.transaction("store") |
+ .objectStore("store") |
+ .openCursor(); |
+ |
+ rq.onsuccess = t.step_func(function(e) { |
+ var cursor = e.target.result; |
+ |
+ if (cursor) { |
+ actual_keys.push(cursor.key); |
+ cursor.continue(); |
+ } |
+ else { |
+ assert_array_equals(actual_keys, expected_keys); |
+ t.done(); |
+ } |
+ }); |
+ }; |
+</script> |
+ |
+<div id="log"></div> |