Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/keypath.htm

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/keypath.htm
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/keypath.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/keypath.htm
deleted file mode 100644
index 6d5ec86996c13751e91d11bbf66a6c059dc045ee..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/keypath.htm
+++ /dev/null
@@ -1,146 +0,0 @@
-<!DOCTYPE html>
-<!-- Submitted from TestTWF Paris -->
-<meta charset="utf-8">
-<title>Keypath</title>
-<link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#key-path-construct">
-<link rel=assert title="A key path is a DOMString that defines how to extract a key from a value. A valid key path is either the empty string, a JavaScript identifier, or multiple Javascript identifiers separated by periods (ASCII character code 46) [ECMA-262].">
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-<script src="support.js"></script>
-
-<script>
-
- var global_db = createdb_for_multiple_tests();
-
- function keypath(keypath, objects, expected_keys, desc) {
- var db,
- t = async_test(document.title + " - " + (desc ? desc : keypath)),
-
- store_name = "store-"+(Date.now())+Math.random();
-
- var open_rq = global_db.setTest(t);
- open_rq.onupgradeneeded = function(e) {
- db = e.target.result;
- var objStore = db.createObjectStore(store_name, { keyPath: keypath });
-
- for (var i = 0; i < objects.length; i++)
- objStore.add(objects[i]);
- };
-
- open_rq.onsuccess = function(e) {
- var actual_keys = [],
- rq = db.transaction(store_name)
- .objectStore(store_name)
- .openCursor();
-
- rq.onsuccess = t.step_func(function(e) {
- var cursor = e.target.result;
-
- if (cursor) {
- actual_keys.push(cursor.key.valueOf());
- cursor.continue();
- }
- else {
- assert_key_equals(actual_keys, expected_keys, "keyorder array");
- t.done();
- }
- });
- };
- }
-
- keypath('my.key',
- [ { my: { key: 10 } } ],
- [ 10 ]);
-
- keypath('my.køi',
- [ { my: { køi: 5 } } ],
- [ 5 ]);
-
- keypath('my.key_ya',
- [ { my: { key_ya: 10 } } ],
- [ 10 ]);
-
- keypath('public.key$ya',
- [ { public: { key$ya: 10 } } ],
- [ 10 ]);
-
- keypath('true.$',
- [ { true: { $: 10 } } ],
- [ 10 ]);
-
- keypath('my._',
- [ { my: { _: 10 } } ],
- [ 10 ]);
-
- keypath('delete.a7',
- [ { delete: { a7: 10 } } ],
- [ 10 ]);
-
- keypath('p.p.p.p.p.p.p.p.p.p.p.p.p.p',
- [ {p:{p:{p:{p:{p:{p:{p:{p:{p:{p:{p:{p:{p:{p:10}}}}}}}}}}}}}} ],
- [ 10 ]);
-
- keypath('str.length',
- [ { str: "pony" }, { str: "my" }, { str: "little" }, { str: "" } ],
- [ 0, 2, 4, 6 ]);
-
- keypath('arr.length',
- [ {arr: [0, 0, 0, 0]}, {arr: [{}, 0, "hei", "length", Infinity, []]}, {arr: [10, 10]}, { arr: []} ],
- [ 0, 2, 4, 6 ]);
-
- keypath('length',
- [ [10, 10], "123", { length: 20 } ],
- [ 2, 3, 20 ]);
-
- keypath('',
- [ ["bags"], "bean", 10 ],
- [ 10, "bean", ["bags"] ],
- "'' uses value as key");
-
- keypath([''],
- [ ["bags"], "bean", 10 ],
- [ [10], ["bean"] , [["bags"]] ],
- "[''] uses value as [key]");
-
- keypath(['x', 'y'],
- [ {x:10, y:20}, {y:1.337, x:100} ],
- [ [10, 20], [100, 1.337] ],
- "['x', 'y']");
-
- keypath([['x'], ['y']],
- [ {x:10, y:20}, {y:1.337, x:100} ],
- [ [10, 20], [100, 1.337] ],
- "[['x'], 'y'] (stringifies)");
-
- keypath(['x', {toString:function(){return 'y'}}],
- [ {x:10, y:20}, {y:1.337, x:100} ],
- [ [10, 20], [100, 1.337] ],
- "['x', {toString->'y'}] (stringifies)");
-
- if (false) {
- var myblob = Blob(["Yoda"], {type:'suprawsum'});
- keypath(['length', 'type'],
- [ myblob ],
- [ 4, 'suprawsum' ],
- "[Blob.length, Blob.type]");
- }
-
- // File.name and File.lastModifiedDate is not testable automatically
-
- keypath(['name', 'type'],
- [ { name: "orange", type: "fruit" }, { name: "orange", type: ["telecom", "french"] } ],
- [ ["orange", "fruit"], ["orange", ["telecom", "french"]] ]);
-
- keypath(['name', 'type.name'],
- [ { name: "orange", type: { name: "fruit" }}, { name: "orange", type: { name: "telecom" }} ],
- [ ["orange", "fruit"], ["orange", "telecom" ] ]);
-
- loop_array = [];
- loop_array.push(loop_array);
- keypath(loop_array,
- [ "a", 1, ["k"] ],
- [ [1], ["a"], [["k"]] ],
- "array loop -> stringify becomes ['']");
-</script>
-
-<div id=log></div>

Powered by Google App Engine
This is Rietveld 408576698