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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces-expected.txt

Issue 2517743002: Import wpt@5a1f188e0536ad023936cc62f9a00617299dc192 (Closed)
Patch Set: rebased Created 4 years 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 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 PASS IndexedDB IDL tests
2 FAIL Window interface: attribute indexedDB assert_equals: "indexedDB" must have a getter expected "function" but got "undefined" 3 FAIL Window interface: attribute indexedDB assert_equals: "indexedDB" must have a getter expected "function" but got "undefined"
3 PASS IDBKeyRange interface: existence and properties of interface object
4 PASS IDBKeyRange interface object length
5 PASS IDBKeyRange interface object name
6 FAIL IDBKeyRange interface: existence and properties of interface prototype obje ct assert_equals: class string of IDBKeyRange.prototype expected "[object IDBKey RangePrototype]" but got "[object IDBKeyRange]"
7 PASS IDBKeyRange interface: existence and properties of interface prototype obje ct's "constructor" property
8 PASS IDBKeyRange interface: attribute lower
9 PASS IDBKeyRange interface: attribute upper
10 PASS IDBKeyRange interface: attribute lowerOpen
11 PASS IDBKeyRange interface: attribute upperOpen
12 PASS IDBKeyRange interface: operation only(any)
13 PASS IDBKeyRange interface: operation lowerBound(any,boolean)
14 PASS IDBKeyRange interface: operation upperBound(any,boolean)
15 PASS IDBKeyRange interface: operation bound(any,any,boolean,boolean)
16 PASS IDBKeyRange must be primary interface of IDBKeyRange.only(0)
17 PASS Stringification of IDBKeyRange.only(0)
18 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lower" wi th the proper type (0)
19 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upper" wi th the proper type (1)
20 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerOpen " with the proper type (2)
21 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperOpen " with the proper type (3)
22 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "only" wit h the proper type (4)
23 PASS IDBKeyRange interface: calling only(any) on IDBKeyRange.only(0) with too fe w arguments must throw TypeError
24 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerBoun d" with the proper type (5)
25 PASS IDBKeyRange interface: calling lowerBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
26 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperBoun d" with the proper type (6)
27 PASS IDBKeyRange interface: calling upperBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
28 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "bound" wi th the proper type (7)
29 PASS IDBKeyRange interface: calling bound(any,any,boolean,boolean) on IDBKeyRang e.only(0) with too few arguments must throw TypeError
30 PASS IDBRequest interface: existence and properties of interface object 4 PASS IDBRequest interface: existence and properties of interface object
31 PASS IDBRequest interface object length 5 PASS IDBRequest interface object length
32 PASS IDBRequest interface object name 6 PASS IDBRequest interface object name
33 FAIL IDBRequest interface: existence and properties of interface prototype objec t assert_equals: class string of IDBRequest.prototype expected "[object IDBReque stPrototype]" but got "[object IDBRequest]" 7 FAIL IDBRequest interface: existence and properties of interface prototype objec t assert_equals: class string of IDBRequest.prototype expected "[object IDBReque stPrototype]" but got "[object IDBRequest]"
34 PASS IDBRequest interface: existence and properties of interface prototype objec t's "constructor" property 8 PASS IDBRequest interface: existence and properties of interface prototype objec t's "constructor" property
35 PASS IDBRequest interface: attribute result 9 PASS IDBRequest interface: attribute result
36 PASS IDBRequest interface: attribute error 10 PASS IDBRequest interface: attribute error
37 PASS IDBRequest interface: attribute source 11 PASS IDBRequest interface: attribute source
38 PASS IDBRequest interface: attribute transaction 12 PASS IDBRequest interface: attribute transaction
39 PASS IDBRequest interface: attribute readyState 13 PASS IDBRequest interface: attribute readyState
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 PASS IDBFactory interface: window.indexedDB must inherit property "cmp" with the proper type (2) 48 PASS IDBFactory interface: window.indexedDB must inherit property "cmp" with the proper type (2)
75 PASS IDBFactory interface: calling cmp(any,any) on window.indexedDB with too few arguments must throw TypeError 49 PASS IDBFactory interface: calling cmp(any,any) on window.indexedDB with too few arguments must throw TypeError
76 PASS IDBDatabase interface: existence and properties of interface object 50 PASS IDBDatabase interface: existence and properties of interface object
77 PASS IDBDatabase interface object length 51 PASS IDBDatabase interface object length
78 PASS IDBDatabase interface object name 52 PASS IDBDatabase interface object name
79 FAIL IDBDatabase interface: existence and properties of interface prototype obje ct assert_equals: class string of IDBDatabase.prototype expected "[object IDBDat abasePrototype]" but got "[object IDBDatabase]" 53 FAIL IDBDatabase interface: existence and properties of interface prototype obje ct assert_equals: class string of IDBDatabase.prototype expected "[object IDBDat abasePrototype]" but got "[object IDBDatabase]"
80 PASS IDBDatabase interface: existence and properties of interface prototype obje ct's "constructor" property 54 PASS IDBDatabase interface: existence and properties of interface prototype obje ct's "constructor" property
81 PASS IDBDatabase interface: attribute name 55 PASS IDBDatabase interface: attribute name
82 PASS IDBDatabase interface: attribute version 56 PASS IDBDatabase interface: attribute version
83 PASS IDBDatabase interface: attribute objectStoreNames 57 PASS IDBDatabase interface: attribute objectStoreNames
58 PASS IDBDatabase interface: operation transaction([object Object],[object Object ],IDBTransactionMode)
59 PASS IDBDatabase interface: operation close()
84 PASS IDBDatabase interface: operation createObjectStore(DOMString,IDBObjectStore Parameters) 60 PASS IDBDatabase interface: operation createObjectStore(DOMString,IDBObjectStore Parameters)
85 PASS IDBDatabase interface: operation deleteObjectStore(DOMString) 61 PASS IDBDatabase interface: operation deleteObjectStore(DOMString)
86 PASS IDBDatabase interface: operation transaction([object Object],[object Object ],IDBTransactionMode)
87 PASS IDBDatabase interface: operation close()
88 PASS IDBDatabase interface: attribute onabort 62 PASS IDBDatabase interface: attribute onabort
89 PASS IDBDatabase interface: attribute onclose 63 PASS IDBDatabase interface: attribute onclose
90 PASS IDBDatabase interface: attribute onerror 64 PASS IDBDatabase interface: attribute onerror
91 PASS IDBDatabase interface: attribute onversionchange 65 PASS IDBDatabase interface: attribute onversionchange
92 PASS IDBObjectStore interface: existence and properties of interface object 66 PASS IDBObjectStore interface: existence and properties of interface object
93 PASS IDBObjectStore interface object length 67 PASS IDBObjectStore interface object length
94 PASS IDBObjectStore interface object name 68 PASS IDBObjectStore interface object name
95 FAIL IDBObjectStore interface: existence and properties of interface prototype o bject assert_equals: class string of IDBObjectStore.prototype expected "[object IDBObjectStorePrototype]" but got "[object IDBObjectStore]" 69 FAIL IDBObjectStore interface: existence and properties of interface prototype o bject assert_equals: class string of IDBObjectStore.prototype expected "[object IDBObjectStorePrototype]" but got "[object IDBObjectStore]"
96 PASS IDBObjectStore interface: existence and properties of interface prototype o bject's "constructor" property 70 PASS IDBObjectStore interface: existence and properties of interface prototype o bject's "constructor" property
97 PASS IDBObjectStore interface: attribute name 71 PASS IDBObjectStore interface: attribute name
98 PASS IDBObjectStore interface: attribute keyPath 72 PASS IDBObjectStore interface: attribute keyPath
99 PASS IDBObjectStore interface: attribute indexNames 73 PASS IDBObjectStore interface: attribute indexNames
100 PASS IDBObjectStore interface: attribute transaction 74 PASS IDBObjectStore interface: attribute transaction
101 PASS IDBObjectStore interface: attribute autoIncrement 75 PASS IDBObjectStore interface: attribute autoIncrement
102 PASS IDBObjectStore interface: operation put(any,any) 76 PASS IDBObjectStore interface: operation put(any,any)
103 PASS IDBObjectStore interface: operation add(any,any) 77 PASS IDBObjectStore interface: operation add(any,any)
104 PASS IDBObjectStore interface: operation delete(any) 78 PASS IDBObjectStore interface: operation delete(any)
79 PASS IDBObjectStore interface: operation clear()
105 PASS IDBObjectStore interface: operation get(any) 80 PASS IDBObjectStore interface: operation get(any)
106 PASS IDBObjectStore interface: operation clear() 81 PASS IDBObjectStore interface: operation getKey(any)
82 PASS IDBObjectStore interface: operation getAll(any,unsigned long)
83 PASS IDBObjectStore interface: operation getAllKeys(any,unsigned long)
84 PASS IDBObjectStore interface: operation count(any)
107 PASS IDBObjectStore interface: operation openCursor(any,IDBCursorDirection) 85 PASS IDBObjectStore interface: operation openCursor(any,IDBCursorDirection)
86 PASS IDBObjectStore interface: operation openKeyCursor(any,IDBCursorDirection)
87 PASS IDBObjectStore interface: operation index(DOMString)
108 PASS IDBObjectStore interface: operation createIndex(DOMString,[object Object],[ object Object],IDBIndexParameters) 88 PASS IDBObjectStore interface: operation createIndex(DOMString,[object Object],[ object Object],IDBIndexParameters)
109 PASS IDBObjectStore interface: operation index(DOMString)
110 PASS IDBObjectStore interface: operation deleteIndex(DOMString) 89 PASS IDBObjectStore interface: operation deleteIndex(DOMString)
111 PASS IDBObjectStore interface: operation count(any)
112 PASS IDBIndex interface: existence and properties of interface object 90 PASS IDBIndex interface: existence and properties of interface object
113 PASS IDBIndex interface object length 91 PASS IDBIndex interface object length
114 PASS IDBIndex interface object name 92 PASS IDBIndex interface object name
115 FAIL IDBIndex interface: existence and properties of interface prototype object assert_equals: class string of IDBIndex.prototype expected "[object IDBIndexProt otype]" but got "[object IDBIndex]" 93 FAIL IDBIndex interface: existence and properties of interface prototype object assert_equals: class string of IDBIndex.prototype expected "[object IDBIndexProt otype]" but got "[object IDBIndex]"
116 PASS IDBIndex interface: existence and properties of interface prototype object' s "constructor" property 94 PASS IDBIndex interface: existence and properties of interface prototype object' s "constructor" property
117 PASS IDBIndex interface: attribute name 95 PASS IDBIndex interface: attribute name
118 PASS IDBIndex interface: attribute objectStore 96 PASS IDBIndex interface: attribute objectStore
119 PASS IDBIndex interface: attribute keyPath 97 PASS IDBIndex interface: attribute keyPath
120 PASS IDBIndex interface: attribute multiEntry 98 PASS IDBIndex interface: attribute multiEntry
121 PASS IDBIndex interface: attribute unique 99 PASS IDBIndex interface: attribute unique
100 PASS IDBIndex interface: operation get(any)
101 PASS IDBIndex interface: operation getKey(any)
102 PASS IDBIndex interface: operation getAll(any,unsigned long)
103 PASS IDBIndex interface: operation getAllKeys(any,unsigned long)
104 PASS IDBIndex interface: operation count(any)
122 PASS IDBIndex interface: operation openCursor(any,IDBCursorDirection) 105 PASS IDBIndex interface: operation openCursor(any,IDBCursorDirection)
123 PASS IDBIndex interface: operation openKeyCursor(any,IDBCursorDirection) 106 PASS IDBIndex interface: operation openKeyCursor(any,IDBCursorDirection)
124 PASS IDBIndex interface: operation get(any) 107 PASS IDBKeyRange interface: existence and properties of interface object
125 PASS IDBIndex interface: operation getKey(any) 108 PASS IDBKeyRange interface object length
126 PASS IDBIndex interface: operation count(any) 109 PASS IDBKeyRange interface object name
110 FAIL IDBKeyRange interface: existence and properties of interface prototype obje ct assert_equals: class string of IDBKeyRange.prototype expected "[object IDBKey RangePrototype]" but got "[object IDBKeyRange]"
111 PASS IDBKeyRange interface: existence and properties of interface prototype obje ct's "constructor" property
112 PASS IDBKeyRange interface: attribute lower
113 PASS IDBKeyRange interface: attribute upper
114 PASS IDBKeyRange interface: attribute lowerOpen
115 PASS IDBKeyRange interface: attribute upperOpen
116 PASS IDBKeyRange interface: operation only(any)
117 PASS IDBKeyRange interface: operation lowerBound(any,boolean)
118 PASS IDBKeyRange interface: operation upperBound(any,boolean)
119 PASS IDBKeyRange interface: operation bound(any,any,boolean,boolean)
120 PASS IDBKeyRange interface: operation includes(any)
121 PASS IDBKeyRange must be primary interface of IDBKeyRange.only(0)
122 PASS Stringification of IDBKeyRange.only(0)
123 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lower" wi th the proper type (0)
124 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upper" wi th the proper type (1)
125 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerOpen " with the proper type (2)
126 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperOpen " with the proper type (3)
127 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "only" wit h the proper type (4)
128 PASS IDBKeyRange interface: calling only(any) on IDBKeyRange.only(0) with too fe w arguments must throw TypeError
129 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerBoun d" with the proper type (5)
130 PASS IDBKeyRange interface: calling lowerBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
131 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperBoun d" with the proper type (6)
132 PASS IDBKeyRange interface: calling upperBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
133 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "bound" wi th the proper type (7)
134 PASS IDBKeyRange interface: calling bound(any,any,boolean,boolean) on IDBKeyRang e.only(0) with too few arguments must throw TypeError
135 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "includes" with the proper type (8)
136 PASS IDBKeyRange interface: calling includes(any) on IDBKeyRange.only(0) with to o few arguments must throw TypeError
127 PASS IDBCursor interface: existence and properties of interface object 137 PASS IDBCursor interface: existence and properties of interface object
128 PASS IDBCursor interface object length 138 PASS IDBCursor interface object length
129 PASS IDBCursor interface object name 139 PASS IDBCursor interface object name
130 FAIL IDBCursor interface: existence and properties of interface prototype object assert_equals: class string of IDBCursor.prototype expected "[object IDBCursorP rototype]" but got "[object IDBCursor]" 140 FAIL IDBCursor interface: existence and properties of interface prototype object assert_equals: class string of IDBCursor.prototype expected "[object IDBCursorP rototype]" but got "[object IDBCursor]"
131 PASS IDBCursor interface: existence and properties of interface prototype object 's "constructor" property 141 PASS IDBCursor interface: existence and properties of interface prototype object 's "constructor" property
132 PASS IDBCursor interface: attribute source 142 PASS IDBCursor interface: attribute source
133 PASS IDBCursor interface: attribute direction 143 PASS IDBCursor interface: attribute direction
134 PASS IDBCursor interface: attribute key 144 PASS IDBCursor interface: attribute key
135 PASS IDBCursor interface: attribute primaryKey 145 PASS IDBCursor interface: attribute primaryKey
136 PASS IDBCursor interface: operation update(any)
137 PASS IDBCursor interface: operation advance(unsigned long) 146 PASS IDBCursor interface: operation advance(unsigned long)
138 PASS IDBCursor interface: operation continue(any) 147 PASS IDBCursor interface: operation continue(any)
148 PASS IDBCursor interface: operation continuePrimaryKey(any,any)
149 PASS IDBCursor interface: operation update(any)
139 PASS IDBCursor interface: operation delete() 150 PASS IDBCursor interface: operation delete()
140 PASS IDBCursorWithValue interface: existence and properties of interface object 151 PASS IDBCursorWithValue interface: existence and properties of interface object
141 PASS IDBCursorWithValue interface object length 152 PASS IDBCursorWithValue interface object length
142 PASS IDBCursorWithValue interface object name 153 PASS IDBCursorWithValue interface object name
143 FAIL IDBCursorWithValue interface: existence and properties of interface prototy pe object assert_equals: class string of IDBCursorWithValue.prototype expected " [object IDBCursorWithValuePrototype]" but got "[object IDBCursorWithValue]" 154 FAIL IDBCursorWithValue interface: existence and properties of interface prototy pe object assert_equals: class string of IDBCursorWithValue.prototype expected " [object IDBCursorWithValuePrototype]" but got "[object IDBCursorWithValue]"
144 PASS IDBCursorWithValue interface: existence and properties of interface prototy pe object's "constructor" property 155 PASS IDBCursorWithValue interface: existence and properties of interface prototy pe object's "constructor" property
145 PASS IDBCursorWithValue interface: attribute value 156 PASS IDBCursorWithValue interface: attribute value
146 PASS IDBTransaction interface: existence and properties of interface object 157 PASS IDBTransaction interface: existence and properties of interface object
147 PASS IDBTransaction interface object length 158 PASS IDBTransaction interface object length
148 PASS IDBTransaction interface object name 159 PASS IDBTransaction interface object name
149 FAIL IDBTransaction interface: existence and properties of interface prototype o bject assert_equals: class string of IDBTransaction.prototype expected "[object IDBTransactionPrototype]" but got "[object IDBTransaction]" 160 FAIL IDBTransaction interface: existence and properties of interface prototype o bject assert_equals: class string of IDBTransaction.prototype expected "[object IDBTransactionPrototype]" but got "[object IDBTransaction]"
150 PASS IDBTransaction interface: existence and properties of interface prototype o bject's "constructor" property 161 PASS IDBTransaction interface: existence and properties of interface prototype o bject's "constructor" property
162 PASS IDBTransaction interface: attribute objectStoreNames
151 PASS IDBTransaction interface: attribute mode 163 PASS IDBTransaction interface: attribute mode
152 PASS IDBTransaction interface: attribute db 164 PASS IDBTransaction interface: attribute db
153 PASS IDBTransaction interface: attribute error 165 PASS IDBTransaction interface: attribute error
154 PASS IDBTransaction interface: operation objectStore(DOMString) 166 PASS IDBTransaction interface: operation objectStore(DOMString)
155 PASS IDBTransaction interface: operation abort() 167 PASS IDBTransaction interface: operation abort()
156 PASS IDBTransaction interface: attribute onabort 168 PASS IDBTransaction interface: attribute onabort
157 PASS IDBTransaction interface: attribute oncomplete 169 PASS IDBTransaction interface: attribute oncomplete
158 PASS IDBTransaction interface: attribute onerror 170 PASS IDBTransaction interface: attribute onerror
171 PASS DOMStringList interface: existence and properties of interface object
172 PASS DOMStringList interface object length
173 PASS DOMStringList interface object name
174 FAIL DOMStringList interface: existence and properties of interface prototype ob ject assert_equals: class string of DOMStringList.prototype expected "[object DO MStringListPrototype]" but got "[object DOMStringList]"
175 PASS DOMStringList interface: existence and properties of interface prototype ob ject's "constructor" property
176 PASS DOMStringList interface: attribute length
177 PASS DOMStringList interface: operation item(unsigned long)
178 PASS DOMStringList interface: operation contains(DOMString)
159 Harness: the test ran to completion. 179 Harness: the test ran to completion.
160 180
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698