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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/cursor-overloads.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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Test converted from WebKit: 2 Test converted from WebKit:
3 http://trac.webkit.org/browser/trunk/LayoutTests/storage/indexeddb/cursor-overlo ads.html 3 http://trac.webkit.org/browser/trunk/LayoutTests/storage/indexeddb/cursor-overlo ads.html
4 --> 4 -->
5 5
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <!-- Submitted from TestTWF Paris --> 7 <!-- Submitted from TestTWF Paris -->
8 <meta charset=utf-8> 8 <meta charset=utf-8>
9 <title>Validate the overloads of IDBObjectStore.openCursor(), IDBIndex.openCurso r() and IDBIndex.openKeyCursor()</title> 9 <title>Validate the overloads of IDBObjectStore.openCursor(), IDBIndex.openCurso r() and IDBIndex.openKeyCursor()</title>
10 <link rel=author href="mailto:romain.huet@gmail.com" title="Romain Huet"> 10 <link rel=author href="mailto:romain.huet@gmail.com" title="Romain Huet">
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 request = eval(statement); 79 request = eval(statement);
80 request.onsuccess = function(event) { 80 request.onsuccess = function(event) {
81 assert_not_equals(event.target.result, null, "Check the result is no t null") 81 assert_not_equals(event.target.result, null, "Check the result is no t null")
82 assert_equals(event.target.result.direction, direction, "Check the r esult direction"); 82 assert_equals(event.target.result.direction, direction, "Check the r esult direction");
83 }; 83 };
84 } 84 }
85 85
86 </script> 86 </script>
87 87
88 <div id=log></div> 88 <div id=log></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698