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

Unified Diff: LayoutTests/imported/web-platform-tests/IndexedDB/interfaces.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/imported/web-platform-tests/IndexedDB/interfaces.htm
diff --git a/LayoutTests/imported/web-platform-tests/IndexedDB/interfaces.htm b/LayoutTests/imported/web-platform-tests/IndexedDB/interfaces.htm
new file mode 100644
index 0000000000000000000000000000000000000000..97bbda21cfe1567109f55e068765be20639483b9
--- /dev/null
+++ b/LayoutTests/imported/web-platform-tests/IndexedDB/interfaces.htm
@@ -0,0 +1,64 @@
+<!--
+Test converted from WebKit:
+http://trac.webkit.org/browser/trunk/LayoutTests/storage/indexeddb/resources/interfaces.js
+ -->
+
+<!DOCTYPE html>
+<!-- Submitted from TestTWF Paris -->
+<meta charset=utf-8>
+<title>Test IndexedDB's interfaces</title>
+<link rel=author href="mailto:romain.huet@gmail.com" title="Romain Huet">
+
+<script src=../../../resources/testharness.js></script>
+<script src=../../../resources/testharnessreport.js></script>
+<script src=support.js></script>
+
+<script>
+
+ test(function() {
+ assert_true('IDBCursor' in self);
+ }, "Test IDBCursor");
+
+ test(function() {
+ assert_true('IDBCursorWithValue' in self);
+ }, "Test IDBCursorWithValue");
+
+ test(function() {
+ assert_true('IDBDatabase' in self);
+ }, "Test IDBDatabase");
+
+ test(function() {
+ assert_true('IDBFactory' in self);
+ }, "Test IDBFactory");
+
+ test(function() {
+ assert_true('IDBIndex' in self);
+ }, "Test IDBIndex");
+
+ test(function() {
+ assert_true('IDBKeyRange' in self);
+ }, "Test IDBKeyRange");
+
+ test(function() {
+ assert_true('IDBObjectStore' in self);
+ }, "Test IDBObjectStore");
+
+ test(function() {
+ assert_true('IDBOpenDBRequest' in self);
+ }, "Test IDBOpenDBRequest");
+
+ test(function() {
+ assert_true('IDBRequest' in self);
+ }, "Test IDBRequest");
+
+ test(function() {
+ assert_true('IDBTransaction' in self);
+ }, "Test IDBTransaction");
+
+ test(function() {
+ assert_true('IDBVersionChangeEvent' in self);
+ }, "Test IDBVersionChangeEvent");
+
+</script>
+
+<div id=log></div>

Powered by Google App Engine
This is Rietveld 408576698