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

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

Issue 2767673002: WPTServe: Run .any.js and .worker.js variations (Closed)
Patch Set: TestExpectations hacky fix Created 3 years, 8 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
(Empty)
1 This is a testharness.js-based test.
2 Found 170 tests; 158 PASS, 12 FAIL, 0 TIMEOUT, 0 NOTRUN.
3 PASS Untitled
4 PASS WorkerGlobalScope interface: attribute indexedDB
5 PASS IDBRequest interface: existence and properties of interface object
6 PASS IDBRequest interface object length
7 PASS IDBRequest interface object name
8 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]"
9 PASS IDBRequest interface: existence and properties of interface prototype objec t's "constructor" property
10 PASS IDBRequest interface: attribute result
11 PASS IDBRequest interface: attribute error
12 PASS IDBRequest interface: attribute source
13 PASS IDBRequest interface: attribute transaction
14 PASS IDBRequest interface: attribute readyState
15 PASS IDBRequest interface: attribute onsuccess
16 PASS IDBRequest interface: attribute onerror
17 PASS IDBOpenDBRequest interface: existence and properties of interface object
18 PASS IDBOpenDBRequest interface object length
19 PASS IDBOpenDBRequest interface object name
20 FAIL IDBOpenDBRequest interface: existence and properties of interface prototype object assert_equals: class string of IDBOpenDBRequest.prototype expected "[obj ect IDBOpenDBRequestPrototype]" but got "[object IDBOpenDBRequest]"
21 PASS IDBOpenDBRequest interface: existence and properties of interface prototype object's "constructor" property
22 PASS IDBOpenDBRequest interface: attribute onblocked
23 PASS IDBOpenDBRequest interface: attribute onupgradeneeded
24 PASS IDBVersionChangeEvent interface: existence and properties of interface obje ct
25 PASS IDBVersionChangeEvent interface object length
26 PASS IDBVersionChangeEvent interface object name
27 FAIL IDBVersionChangeEvent interface: existence and properties of interface prot otype object assert_equals: class string of IDBVersionChangeEvent.prototype expe cted "[object IDBVersionChangeEventPrototype]" but got "[object IDBVersionChange Event]"
28 PASS IDBVersionChangeEvent interface: existence and properties of interface prot otype object's "constructor" property
29 PASS IDBVersionChangeEvent interface: attribute oldVersion
30 PASS IDBVersionChangeEvent interface: attribute newVersion
31 PASS IDBVersionChangeEvent must be primary interface of new IDBVersionChangeEven t('foo')
32 PASS Stringification of new IDBVersionChangeEvent('foo')
33 PASS IDBVersionChangeEvent interface: new IDBVersionChangeEvent('foo') must inhe rit property "oldVersion" with the proper type (0)
34 PASS IDBVersionChangeEvent interface: new IDBVersionChangeEvent('foo') must inhe rit property "newVersion" with the proper type (1)
35 PASS IDBFactory interface: existence and properties of interface object
36 PASS IDBFactory interface object length
37 PASS IDBFactory interface object name
38 FAIL IDBFactory interface: existence and properties of interface prototype objec t assert_equals: class string of IDBFactory.prototype expected "[object IDBFacto ryPrototype]" but got "[object IDBFactory]"
39 PASS IDBFactory interface: existence and properties of interface prototype objec t's "constructor" property
40 PASS IDBFactory interface: operation open(DOMString,unsigned long long)
41 PASS IDBFactory interface: operation deleteDatabase(DOMString)
42 PASS IDBFactory interface: operation cmp(any,any)
43 PASS IDBFactory must be primary interface of self.indexedDB
44 PASS Stringification of self.indexedDB
45 PASS IDBFactory interface: self.indexedDB must inherit property "open" with the proper type (0)
46 PASS IDBFactory interface: calling open(DOMString,unsigned long long) on self.in dexedDB with too few arguments must throw TypeError
47 PASS IDBFactory interface: self.indexedDB must inherit property "deleteDatabase" with the proper type (1)
48 PASS IDBFactory interface: calling deleteDatabase(DOMString) on self.indexedDB w ith too few arguments must throw TypeError
49 PASS IDBFactory interface: self.indexedDB must inherit property "cmp" with the p roper type (2)
50 PASS IDBFactory interface: calling cmp(any,any) on self.indexedDB with too few a rguments must throw TypeError
51 PASS IDBDatabase interface: existence and properties of interface object
52 PASS IDBDatabase interface object length
53 PASS IDBDatabase interface object name
54 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]"
55 PASS IDBDatabase interface: existence and properties of interface prototype obje ct's "constructor" property
56 PASS IDBDatabase interface: attribute name
57 PASS IDBDatabase interface: attribute version
58 PASS IDBDatabase interface: attribute objectStoreNames
59 PASS IDBDatabase interface: operation transaction([object Object],[object Object ],IDBTransactionMode)
60 PASS IDBDatabase interface: operation close()
61 PASS IDBDatabase interface: operation createObjectStore(DOMString,IDBObjectStore Parameters)
62 PASS IDBDatabase interface: operation deleteObjectStore(DOMString)
63 PASS IDBDatabase interface: attribute onabort
64 PASS IDBDatabase interface: attribute onclose
65 PASS IDBDatabase interface: attribute onerror
66 PASS IDBDatabase interface: attribute onversionchange
67 PASS IDBObjectStore interface: existence and properties of interface object
68 PASS IDBObjectStore interface object length
69 PASS IDBObjectStore interface object name
70 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]"
71 PASS IDBObjectStore interface: existence and properties of interface prototype o bject's "constructor" property
72 PASS IDBObjectStore interface: attribute name
73 PASS IDBObjectStore interface: attribute keyPath
74 PASS IDBObjectStore interface: attribute indexNames
75 PASS IDBObjectStore interface: attribute transaction
76 PASS IDBObjectStore interface: attribute autoIncrement
77 PASS IDBObjectStore interface: operation put(any,any)
78 PASS IDBObjectStore interface: operation add(any,any)
79 PASS IDBObjectStore interface: operation delete(any)
80 PASS IDBObjectStore interface: operation clear()
81 PASS IDBObjectStore interface: operation get(any)
82 PASS IDBObjectStore interface: operation getKey(any)
83 PASS IDBObjectStore interface: operation getAll(any,unsigned long)
84 PASS IDBObjectStore interface: operation getAllKeys(any,unsigned long)
85 PASS IDBObjectStore interface: operation count(any)
86 PASS IDBObjectStore interface: operation openCursor(any,IDBCursorDirection)
87 PASS IDBObjectStore interface: operation openKeyCursor(any,IDBCursorDirection)
88 PASS IDBObjectStore interface: operation index(DOMString)
89 PASS IDBObjectStore interface: operation createIndex(DOMString,[object Object],[ object Object],IDBIndexParameters)
90 PASS IDBObjectStore interface: operation deleteIndex(DOMString)
91 PASS IDBIndex interface: existence and properties of interface object
92 PASS IDBIndex interface object length
93 PASS IDBIndex interface object name
94 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]"
95 PASS IDBIndex interface: existence and properties of interface prototype object' s "constructor" property
96 PASS IDBIndex interface: attribute name
97 PASS IDBIndex interface: attribute objectStore
98 PASS IDBIndex interface: attribute keyPath
99 PASS IDBIndex interface: attribute multiEntry
100 PASS IDBIndex interface: attribute unique
101 PASS IDBIndex interface: operation get(any)
102 PASS IDBIndex interface: operation getKey(any)
103 PASS IDBIndex interface: operation getAll(any,unsigned long)
104 PASS IDBIndex interface: operation getAllKeys(any,unsigned long)
105 PASS IDBIndex interface: operation count(any)
106 PASS IDBIndex interface: operation openCursor(any,IDBCursorDirection)
107 PASS IDBIndex interface: operation openKeyCursor(any,IDBCursorDirection)
108 PASS IDBKeyRange interface: existence and properties of interface object
109 PASS IDBKeyRange interface object length
110 PASS IDBKeyRange interface object name
111 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]"
112 PASS IDBKeyRange interface: existence and properties of interface prototype obje ct's "constructor" property
113 PASS IDBKeyRange interface: attribute lower
114 PASS IDBKeyRange interface: attribute upper
115 PASS IDBKeyRange interface: attribute lowerOpen
116 PASS IDBKeyRange interface: attribute upperOpen
117 PASS IDBKeyRange interface: operation only(any)
118 PASS IDBKeyRange interface: operation lowerBound(any,boolean)
119 PASS IDBKeyRange interface: operation upperBound(any,boolean)
120 PASS IDBKeyRange interface: operation bound(any,any,boolean,boolean)
121 PASS IDBKeyRange interface: operation includes(any)
122 PASS IDBKeyRange must be primary interface of IDBKeyRange.only(0)
123 PASS Stringification of IDBKeyRange.only(0)
124 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lower" wi th the proper type (0)
125 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upper" wi th the proper type (1)
126 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerOpen " with the proper type (2)
127 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperOpen " with the proper type (3)
128 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "only" wit h the proper type (4)
129 PASS IDBKeyRange interface: calling only(any) on IDBKeyRange.only(0) with too fe w arguments must throw TypeError
130 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "lowerBoun d" with the proper type (5)
131 PASS IDBKeyRange interface: calling lowerBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
132 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "upperBoun d" with the proper type (6)
133 PASS IDBKeyRange interface: calling upperBound(any,boolean) on IDBKeyRange.only( 0) with too few arguments must throw TypeError
134 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "bound" wi th the proper type (7)
135 PASS IDBKeyRange interface: calling bound(any,any,boolean,boolean) on IDBKeyRang e.only(0) with too few arguments must throw TypeError
136 PASS IDBKeyRange interface: IDBKeyRange.only(0) must inherit property "includes" with the proper type (8)
137 PASS IDBKeyRange interface: calling includes(any) on IDBKeyRange.only(0) with to o few arguments must throw TypeError
138 PASS IDBCursor interface: existence and properties of interface object
139 PASS IDBCursor interface object length
140 PASS IDBCursor interface object name
141 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]"
142 PASS IDBCursor interface: existence and properties of interface prototype object 's "constructor" property
143 PASS IDBCursor interface: attribute source
144 PASS IDBCursor interface: attribute direction
145 PASS IDBCursor interface: attribute key
146 PASS IDBCursor interface: attribute primaryKey
147 PASS IDBCursor interface: operation advance(unsigned long)
148 PASS IDBCursor interface: operation continue(any)
149 PASS IDBCursor interface: operation continuePrimaryKey(any,any)
150 PASS IDBCursor interface: operation update(any)
151 PASS IDBCursor interface: operation delete()
152 PASS IDBCursorWithValue interface: existence and properties of interface object
153 PASS IDBCursorWithValue interface object length
154 PASS IDBCursorWithValue interface object name
155 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]"
156 PASS IDBCursorWithValue interface: existence and properties of interface prototy pe object's "constructor" property
157 PASS IDBCursorWithValue interface: attribute value
158 PASS IDBTransaction interface: existence and properties of interface object
159 PASS IDBTransaction interface object length
160 PASS IDBTransaction interface object name
161 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]"
162 PASS IDBTransaction interface: existence and properties of interface prototype o bject's "constructor" property
163 PASS IDBTransaction interface: attribute objectStoreNames
164 PASS IDBTransaction interface: attribute mode
165 PASS IDBTransaction interface: attribute db
166 PASS IDBTransaction interface: attribute error
167 PASS IDBTransaction interface: operation objectStore(DOMString)
168 PASS IDBTransaction interface: operation abort()
169 PASS IDBTransaction interface: attribute onabort
170 PASS IDBTransaction interface: attribute oncomplete
171 PASS IDBTransaction interface: attribute onerror
172 FAIL DOMStringList interface: existence and properties of interface object asser t_false: expected false got true
173 Harness: the test ran to completion.
174
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698