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

Side by Side Diff: LayoutTests/imported/web-platform-tests/IndexedDB/idbindex-multientry-arraykeypath.htm

Issue 560893005: First checked-in import of the W3C's test suites. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add new expectations for newly failing w3c tests Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>IDBIndex.multiEntry: array keyPath with multiEntry</title>
4 <link rel="author" href="mailto:odinho@opera.com" title="Odin Hørthe Omdal">
5 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html# key-construct">
6 <link rel=assert title="XXX">
7 <script src="../../../resources/testharness.js"></script>
8 <script src="../../../resources/testharnessreport.js"></script>
9 <script src="support.js"></script>
10
11 <script>
12 createdb(async_test(document.title, {timeout: 10000})).onupgradeneeded = fun ction(e) {
13 var store = e.target.result.createObjectStore("store");
14
15 assert_throws('InvalidAccessError', function() {
16 store.createIndex('actors', ['name'], { multiEntry: true })
17 });
18
19 this.done();
20 };
21 </script>
22
23 <div id="log"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698