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

Side by Side Diff: LayoutTests/fast/canvas/webgl/data-view-test-expected.txt

Issue 16818023: DOMException toString is not correct (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 6 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
1 Test DataView. 1 Test DataView.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Test for constructor not called as a function 6 Test for constructor not called as a function
7 PASS DataView(new ArrayBuffer) threw exception 7 PASS DataView(new ArrayBuffer) threw exception
8 8
9 Test for constructor taking 1 argument 9 Test for constructor taking 1 argument
10 PASS view = new DataView(arayBuffer) is defined. 10 PASS view = new DataView(arayBuffer) is defined.
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 PASS view.getFloat64(3, true) is -NaN 145 PASS view.getFloat64(3, true) is -NaN
146 PASS view.getFloat64(7, true) is -NaN 146 PASS view.getFloat64(7, true) is -NaN
147 PASS view.getFloat64(10, true) is -NaN 147 PASS view.getFloat64(10, true) is -NaN
148 PASS view.getFloat64(0, false) is -NaN 148 PASS view.getFloat64(0, false) is -NaN
149 PASS view.getFloat64(3, false) is -NaN 149 PASS view.getFloat64(3, false) is -NaN
150 PASS view.getFloat64(7, false) is -NaN 150 PASS view.getFloat64(7, false) is -NaN
151 PASS view.getFloat64(10, false) is -NaN 151 PASS view.getFloat64(10, false) is -NaN
152 152
153 Test for get methods that might read beyond range 153 Test for get methods that might read beyond range
154 PASS view.getInt8(0) is 0 154 PASS view.getInt8(0) is 0
155 PASS view.getInt8(8) threw exception Error: IndexSizeError: DOM Exception 1. 155 PASS view.getInt8(8) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
156 PASS view.getInt8(15) threw exception Error: IndexSizeError: DOM Exception 1. 156 PASS view.getInt8(15) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
157 PASS view.getUint8(0) is 0 157 PASS view.getUint8(0) is 0
158 PASS view.getUint8(8) threw exception Error: IndexSizeError: DOM Exception 1. 158 PASS view.getUint8(8) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
159 PASS view.getUint8(15) threw exception Error: IndexSizeError: DOM Exception 1. 159 PASS view.getUint8(15) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
160 PASS view.getInt16(0, true) is 256 160 PASS view.getInt16(0, true) is 256
161 PASS view.getInt16(5, true) threw exception Error: IndexSizeError: DOM Exception 1. 161 PASS view.getInt16(5, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
162 PASS view.getInt16(9, true) threw exception Error: IndexSizeError: DOM Exception 1. 162 PASS view.getInt16(9, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
163 PASS view.getInt16(14, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 163 PASS view.getInt16(14, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
164 PASS view.getInt16(0) is 1 164 PASS view.getInt16(0) is 1
165 PASS view.getInt16(5) threw exception Error: IndexSizeError: DOM Exception 1. 165 PASS view.getInt16(5) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
166 PASS view.getInt16(9) threw exception Error: IndexSizeError: DOM Exception 1. 166 PASS view.getInt16(9) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
167 PASS view.getInt16(14) threw exception Error: IndexSizeError: DOM Exception 1. 167 PASS view.getInt16(14) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
168 PASS view.getUint16(0, true) is 256 168 PASS view.getUint16(0, true) is 256
169 PASS view.getUint16(5, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 169 PASS view.getUint16(5, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
170 PASS view.getUint16(9, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 170 PASS view.getUint16(9, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
171 PASS view.getUint16(14, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 171 PASS view.getUint16(14, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
172 PASS view.getUint16(0) is 1 172 PASS view.getUint16(0) is 1
173 PASS view.getUint16(5) threw exception Error: IndexSizeError: DOM Exception 1. 173 PASS view.getUint16(5) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
174 PASS view.getUint16(9) threw exception Error: IndexSizeError: DOM Exception 1. 174 PASS view.getUint16(9) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
175 PASS view.getUint16(14) threw exception Error: IndexSizeError: DOM Exception 1. 175 PASS view.getUint16(14) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
176 PASS view.getInt32(0, true) threw exception Error: IndexSizeError: DOM Exception 1. 176 PASS view.getInt32(0, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
177 PASS view.getInt32(3, true) threw exception Error: IndexSizeError: DOM Exception 1. 177 PASS view.getInt32(3, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
178 PASS view.getInt32(6, true) threw exception Error: IndexSizeError: DOM Exception 1. 178 PASS view.getInt32(6, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
179 PASS view.getInt32(9, true) threw exception Error: IndexSizeError: DOM Exception 1. 179 PASS view.getInt32(9, true) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
180 PASS view.getInt32(12, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 180 PASS view.getInt32(12, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
181 PASS view.getInt32(0) threw exception Error: IndexSizeError: DOM Exception 1. 181 PASS view.getInt32(0) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
182 PASS view.getInt32(3) threw exception Error: IndexSizeError: DOM Exception 1. 182 PASS view.getInt32(3) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
183 PASS view.getInt32(6) threw exception Error: IndexSizeError: DOM Exception 1. 183 PASS view.getInt32(6) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
184 PASS view.getInt32(9) threw exception Error: IndexSizeError: DOM Exception 1. 184 PASS view.getInt32(9) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
185 PASS view.getInt32(12) threw exception Error: IndexSizeError: DOM Exception 1. 185 PASS view.getInt32(12) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
186 PASS view.getUint32(0, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 186 PASS view.getUint32(0, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
187 PASS view.getUint32(3, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 187 PASS view.getUint32(3, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
188 PASS view.getUint32(6, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 188 PASS view.getUint32(6, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
189 PASS view.getUint32(9, true) threw exception Error: IndexSizeError: DOM Exceptio n 1. 189 PASS view.getUint32(9, true) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
190 PASS view.getUint32(12, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 190 PASS view.getUint32(12, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
191 PASS view.getUint32(0) threw exception Error: IndexSizeError: DOM Exception 1. 191 PASS view.getUint32(0) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
192 PASS view.getUint32(3) threw exception Error: IndexSizeError: DOM Exception 1. 192 PASS view.getUint32(3) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
193 PASS view.getUint32(6) threw exception Error: IndexSizeError: DOM Exception 1. 193 PASS view.getUint32(6) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
194 PASS view.getUint32(9) threw exception Error: IndexSizeError: DOM Exception 1. 194 PASS view.getUint32(9) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
195 PASS view.getUint32(12) threw exception Error: IndexSizeError: DOM Exception 1. 195 PASS view.getUint32(12) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
196 PASS view.getFloat32(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 196 PASS view.getFloat32(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
197 PASS view.getFloat32(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 197 PASS view.getFloat32(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
198 PASS view.getFloat32(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 198 PASS view.getFloat32(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
199 PASS view.getFloat32(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 199 PASS view.getFloat32(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
200 PASS view.getFloat32(0, false) is 10 200 PASS view.getFloat32(0, false) is 10
201 PASS view.getFloat32(3, false) is 10 201 PASS view.getFloat32(3, false) is 10
202 PASS view.getFloat32(7, false) is 10 202 PASS view.getFloat32(7, false) is 10
203 PASS view.getFloat32(10, false) is 10 203 PASS view.getFloat32(10, false) is 10
204 PASS view.getFloat32(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 204 PASS view.getFloat32(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
205 PASS view.getFloat32(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 205 PASS view.getFloat32(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
206 PASS view.getFloat32(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 206 PASS view.getFloat32(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
207 PASS view.getFloat32(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 207 PASS view.getFloat32(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
208 PASS view.getFloat32(0, false) is 1.2300000190734863 208 PASS view.getFloat32(0, false) is 1.2300000190734863
209 PASS view.getFloat32(3, false) is 1.2300000190734863 209 PASS view.getFloat32(3, false) is 1.2300000190734863
210 PASS view.getFloat32(7, false) is 1.2300000190734863 210 PASS view.getFloat32(7, false) is 1.2300000190734863
211 PASS view.getFloat32(10, false) is 1.2300000190734863 211 PASS view.getFloat32(10, false) is 1.2300000190734863
212 PASS view.getFloat32(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 212 PASS view.getFloat32(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
213 PASS view.getFloat32(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 213 PASS view.getFloat32(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
214 PASS view.getFloat32(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 214 PASS view.getFloat32(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
215 PASS view.getFloat32(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 215 PASS view.getFloat32(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
216 PASS view.getFloat32(0, false) is -45621.37109375 216 PASS view.getFloat32(0, false) is -45621.37109375
217 PASS view.getFloat32(3, false) is -45621.37109375 217 PASS view.getFloat32(3, false) is -45621.37109375
218 PASS view.getFloat32(7, false) is -45621.37109375 218 PASS view.getFloat32(7, false) is -45621.37109375
219 PASS view.getFloat32(10, false) is -45621.37109375 219 PASS view.getFloat32(10, false) is -45621.37109375
220 PASS view.getFloat32(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 220 PASS view.getFloat32(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
221 PASS view.getFloat32(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 221 PASS view.getFloat32(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
222 PASS view.getFloat32(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 222 PASS view.getFloat32(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
223 PASS view.getFloat32(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 223 PASS view.getFloat32(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
224 PASS view.getFloat32(0, false) is NaN 224 PASS view.getFloat32(0, false) is NaN
225 PASS view.getFloat32(3, false) is NaN 225 PASS view.getFloat32(3, false) is NaN
226 PASS view.getFloat32(7, false) is NaN 226 PASS view.getFloat32(7, false) is NaN
227 PASS view.getFloat32(10, false) is NaN 227 PASS view.getFloat32(10, false) is NaN
228 PASS view.getFloat32(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 228 PASS view.getFloat32(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
229 PASS view.getFloat32(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 229 PASS view.getFloat32(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
230 PASS view.getFloat32(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 230 PASS view.getFloat32(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
231 PASS view.getFloat32(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 231 PASS view.getFloat32(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
232 PASS view.getFloat32(0, false) is -NaN 232 PASS view.getFloat32(0, false) is -NaN
233 PASS view.getFloat32(3, false) is -NaN 233 PASS view.getFloat32(3, false) is -NaN
234 PASS view.getFloat32(7, false) is -NaN 234 PASS view.getFloat32(7, false) is -NaN
235 PASS view.getFloat32(10, false) is -NaN 235 PASS view.getFloat32(10, false) is -NaN
236 PASS view.getFloat64(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 236 PASS view.getFloat64(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
237 PASS view.getFloat64(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 237 PASS view.getFloat64(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
238 PASS view.getFloat64(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 238 PASS view.getFloat64(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
239 PASS view.getFloat64(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 239 PASS view.getFloat64(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
240 PASS view.getFloat64(0, false) is 10 240 PASS view.getFloat64(0, false) is 10
241 PASS view.getFloat64(3, false) is 10 241 PASS view.getFloat64(3, false) is 10
242 PASS view.getFloat64(7, false) is 10 242 PASS view.getFloat64(7, false) is 10
243 PASS view.getFloat64(10, false) is 10 243 PASS view.getFloat64(10, false) is 10
244 PASS view.getFloat64(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 244 PASS view.getFloat64(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
245 PASS view.getFloat64(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 245 PASS view.getFloat64(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
246 PASS view.getFloat64(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 246 PASS view.getFloat64(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
247 PASS view.getFloat64(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 247 PASS view.getFloat64(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
248 PASS view.getFloat64(0, false) is 1.23 248 PASS view.getFloat64(0, false) is 1.23
249 PASS view.getFloat64(3, false) is 1.23 249 PASS view.getFloat64(3, false) is 1.23
250 PASS view.getFloat64(7, false) is 1.23 250 PASS view.getFloat64(7, false) is 1.23
251 PASS view.getFloat64(10, false) is 1.23 251 PASS view.getFloat64(10, false) is 1.23
252 PASS view.getFloat64(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 252 PASS view.getFloat64(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
253 PASS view.getFloat64(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 253 PASS view.getFloat64(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
254 PASS view.getFloat64(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 254 PASS view.getFloat64(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
255 PASS view.getFloat64(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 255 PASS view.getFloat64(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
256 PASS view.getFloat64(0, false) is -6213576.4839 256 PASS view.getFloat64(0, false) is -6213576.4839
257 PASS view.getFloat64(3, false) is -6213576.4839 257 PASS view.getFloat64(3, false) is -6213576.4839
258 PASS view.getFloat64(7, false) is -6213576.4839 258 PASS view.getFloat64(7, false) is -6213576.4839
259 PASS view.getFloat64(10, false) is -6213576.4839 259 PASS view.getFloat64(10, false) is -6213576.4839
260 PASS view.getFloat64(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 260 PASS view.getFloat64(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
261 PASS view.getFloat64(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 261 PASS view.getFloat64(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
262 PASS view.getFloat64(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 262 PASS view.getFloat64(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
263 PASS view.getFloat64(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 263 PASS view.getFloat64(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
264 PASS view.getFloat64(0, false) is NaN 264 PASS view.getFloat64(0, false) is NaN
265 PASS view.getFloat64(3, false) is NaN 265 PASS view.getFloat64(3, false) is NaN
266 PASS view.getFloat64(7, false) is NaN 266 PASS view.getFloat64(7, false) is NaN
267 PASS view.getFloat64(10, false) is NaN 267 PASS view.getFloat64(10, false) is NaN
268 PASS view.getFloat64(0, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 268 PASS view.getFloat64(0, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
269 PASS view.getFloat64(3, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 269 PASS view.getFloat64(3, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
270 PASS view.getFloat64(7, true) threw exception Error: IndexSizeError: DOM Excepti on 1. 270 PASS view.getFloat64(7, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
271 PASS view.getFloat64(10, true) threw exception Error: IndexSizeError: DOM Except ion 1. 271 PASS view.getFloat64(10, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
272 PASS view.getFloat64(0, false) is -NaN 272 PASS view.getFloat64(0, false) is -NaN
273 PASS view.getFloat64(3, false) is -NaN 273 PASS view.getFloat64(3, false) is -NaN
274 PASS view.getFloat64(7, false) is -NaN 274 PASS view.getFloat64(7, false) is -NaN
275 PASS view.getFloat64(10, false) is -NaN 275 PASS view.getFloat64(10, false) is -NaN
276 276
277 Test for get methods that read from negative index 277 Test for get methods that read from negative index
278 PASS view.getInt8(-1) threw exception Error: IndexSizeError: DOM Exception 1. 278 PASS view.getInt8(-1) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
279 PASS view.getInt8(-2) threw exception Error: IndexSizeError: DOM Exception 1. 279 PASS view.getInt8(-2) threw exception IndexSizeError: Index or size was negative , or greater than the allowed value..
280 PASS view.getUint8(-1) threw exception Error: IndexSizeError: DOM Exception 1. 280 PASS view.getUint8(-1) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
281 PASS view.getUint8(-2) threw exception Error: IndexSizeError: DOM Exception 1. 281 PASS view.getUint8(-2) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
282 PASS view.getInt16(-1) threw exception Error: IndexSizeError: DOM Exception 1. 282 PASS view.getInt16(-1) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
283 PASS view.getInt16(-2) threw exception Error: IndexSizeError: DOM Exception 1. 283 PASS view.getInt16(-2) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
284 PASS view.getInt16(-3) threw exception Error: IndexSizeError: DOM Exception 1. 284 PASS view.getInt16(-3) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
285 PASS view.getUint16(-1) threw exception Error: IndexSizeError: DOM Exception 1. 285 PASS view.getUint16(-1) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
286 PASS view.getUint16(-2) threw exception Error: IndexSizeError: DOM Exception 1. 286 PASS view.getUint16(-2) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
287 PASS view.getUint16(-3) threw exception Error: IndexSizeError: DOM Exception 1. 287 PASS view.getUint16(-3) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
288 PASS view.getInt32(-1) threw exception Error: IndexSizeError: DOM Exception 1. 288 PASS view.getInt32(-1) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
289 PASS view.getInt32(-3) threw exception Error: IndexSizeError: DOM Exception 1. 289 PASS view.getInt32(-3) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
290 PASS view.getInt32(-5) threw exception Error: IndexSizeError: DOM Exception 1. 290 PASS view.getInt32(-5) threw exception IndexSizeError: Index or size was negativ e, or greater than the allowed value..
291 PASS view.getUint32(-1) threw exception Error: IndexSizeError: DOM Exception 1. 291 PASS view.getUint32(-1) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
292 PASS view.getUint32(-3) threw exception Error: IndexSizeError: DOM Exception 1. 292 PASS view.getUint32(-3) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
293 PASS view.getUint32(-5) threw exception Error: IndexSizeError: DOM Exception 1. 293 PASS view.getUint32(-5) threw exception IndexSizeError: Index or size was negati ve, or greater than the allowed value..
294 PASS view.getFloat32(-1) threw exception Error: IndexSizeError: DOM Exception 1. 294 PASS view.getFloat32(-1) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
295 PASS view.getFloat32(-3) threw exception Error: IndexSizeError: DOM Exception 1. 295 PASS view.getFloat32(-3) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
296 PASS view.getFloat32(-5) threw exception Error: IndexSizeError: DOM Exception 1. 296 PASS view.getFloat32(-5) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
297 PASS view.getFloat64(-1) threw exception Error: IndexSizeError: DOM Exception 1. 297 PASS view.getFloat64(-1) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
298 PASS view.getFloat64(-5) threw exception Error: IndexSizeError: DOM Exception 1. 298 PASS view.getFloat64(-5) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
299 PASS view.getFloat64(-9) threw exception Error: IndexSizeError: DOM Exception 1. 299 PASS view.getFloat64(-9) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
300 300
301 Test for wrong arguments passed to get methods 301 Test for wrong arguments passed to get methods
302 PASS view.getInt8() threw exception TypeError: Not enough arguments. 302 PASS view.getInt8() threw exception TypeError: Not enough arguments.
303 PASS view.getUint8() threw exception TypeError: Not enough arguments. 303 PASS view.getUint8() threw exception TypeError: Not enough arguments.
304 PASS view.getInt16() threw exception TypeError: Not enough arguments. 304 PASS view.getInt16() threw exception TypeError: Not enough arguments.
305 PASS view.getUint16() threw exception TypeError: Not enough arguments. 305 PASS view.getUint16() threw exception TypeError: Not enough arguments.
306 PASS view.getInt32() threw exception TypeError: Not enough arguments. 306 PASS view.getInt32() threw exception TypeError: Not enough arguments.
307 PASS view.getUint32() threw exception TypeError: Not enough arguments. 307 PASS view.getUint32() threw exception TypeError: Not enough arguments.
308 PASS view.getFloat32() threw exception TypeError: Not enough arguments. 308 PASS view.getFloat32() threw exception TypeError: Not enough arguments.
309 PASS view.getFloat64() threw exception TypeError: Not enough arguments. 309 PASS view.getFloat64() threw exception TypeError: Not enough arguments.
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 PASS view.setFloat64(3, -NaN, false) is undefined. 550 PASS view.setFloat64(3, -NaN, false) is undefined.
551 PASS view.getFloat64(3, false) is -NaN 551 PASS view.getFloat64(3, false) is -NaN
552 PASS view.setFloat64(7, -NaN, false) is undefined. 552 PASS view.setFloat64(7, -NaN, false) is undefined.
553 PASS view.getFloat64(7, false) is -NaN 553 PASS view.getFloat64(7, false) is -NaN
554 PASS view.setFloat64(10, -NaN, false) is undefined. 554 PASS view.setFloat64(10, -NaN, false) is undefined.
555 PASS view.getFloat64(10, false) is -NaN 555 PASS view.getFloat64(10, false) is -NaN
556 556
557 Test for set methods that might write beyond the range 557 Test for set methods that might write beyond the range
558 PASS view.setInt8(0, 0) is undefined. 558 PASS view.setInt8(0, 0) is undefined.
559 PASS view.getInt8(0) is 0 559 PASS view.getInt8(0) is 0
560 PASS view.setInt8(8, -128) threw exception Error: IndexSizeError: DOM Exception 1. 560 PASS view.setInt8(8, -128) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
561 PASS view.setInt8(15, -1) threw exception Error: IndexSizeError: DOM Exception 1 . 561 PASS view.setInt8(15, -1) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
562 PASS view.setUint8(0, 0) is undefined. 562 PASS view.setUint8(0, 0) is undefined.
563 PASS view.getUint8(0) is 0 563 PASS view.getUint8(0) is 0
564 PASS view.setUint8(8, 128) threw exception Error: IndexSizeError: DOM Exception 1. 564 PASS view.setUint8(8, 128) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
565 PASS view.setUint8(15, 255) threw exception Error: IndexSizeError: DOM Exception 1. 565 PASS view.setUint8(15, 255) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
566 PASS view.setInt16(0, 256, true) is undefined. 566 PASS view.setInt16(0, 256, true) is undefined.
567 PASS view.getInt16(0, true) is 256 567 PASS view.getInt16(0, true) is 256
568 PASS view.setInt16(5, 26213, true) threw exception Error: IndexSizeError: DOM Ex ception 1. 568 PASS view.setInt16(5, 26213, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
569 PASS view.setInt16(9, -32127, true) threw exception Error: IndexSizeError: DOM E xception 1. 569 PASS view.setInt16(9, -32127, true) threw exception IndexSizeError: Index or siz e was negative, or greater than the allowed value..
570 PASS view.setInt16(14, -2, true) threw exception Error: IndexSizeError: DOM Exce ption 1. 570 PASS view.setInt16(14, -2, true) threw exception IndexSizeError: Index or size w as negative, or greater than the allowed value..
571 PASS view.setInt16(0, 1) is undefined. 571 PASS view.setInt16(0, 1) is undefined.
572 PASS view.getInt16(0) is 1 572 PASS view.getInt16(0) is 1
573 PASS view.setInt16(5, 25958) threw exception Error: IndexSizeError: DOM Exceptio n 1. 573 PASS view.setInt16(5, 25958) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
574 PASS view.setInt16(9, -32382) threw exception Error: IndexSizeError: DOM Excepti on 1. 574 PASS view.setInt16(9, -32382) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
575 PASS view.setInt16(14, -257) threw exception Error: IndexSizeError: DOM Exceptio n 1. 575 PASS view.setInt16(14, -257) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
576 PASS view.setUint16(0, 256, true) is undefined. 576 PASS view.setUint16(0, 256, true) is undefined.
577 PASS view.getUint16(0, true) is 256 577 PASS view.getUint16(0, true) is 256
578 PASS view.setUint16(5, 26213, true) threw exception Error: IndexSizeError: DOM E xception 1. 578 PASS view.setUint16(5, 26213, true) threw exception IndexSizeError: Index or siz e was negative, or greater than the allowed value..
579 PASS view.setUint16(9, 33409, true) threw exception Error: IndexSizeError: DOM E xception 1. 579 PASS view.setUint16(9, 33409, true) threw exception IndexSizeError: Index or siz e was negative, or greater than the allowed value..
580 PASS view.setUint16(14, 65534, true) threw exception Error: IndexSizeError: DOM Exception 1. 580 PASS view.setUint16(14, 65534, true) threw exception IndexSizeError: Index or si ze was negative, or greater than the allowed value..
581 PASS view.setUint16(0, 1) is undefined. 581 PASS view.setUint16(0, 1) is undefined.
582 PASS view.getUint16(0) is 1 582 PASS view.getUint16(0) is 1
583 PASS view.setUint16(5, 25958) threw exception Error: IndexSizeError: DOM Excepti on 1. 583 PASS view.setUint16(5, 25958) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
584 PASS view.setUint16(9, 33154) threw exception Error: IndexSizeError: DOM Excepti on 1. 584 PASS view.setUint16(9, 33154) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
585 PASS view.setUint16(14, 65279) threw exception Error: IndexSizeError: DOM Except ion 1. 585 PASS view.setUint16(14, 65279) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
586 PASS view.setInt32(0, 50462976, true) threw exception Error: IndexSizeError: DOM Exception 1. 586 PASS view.setInt32(0, 50462976, true) threw exception IndexSizeError: Index or s ize was negative, or greater than the allowed value..
587 PASS view.setInt32(3, 1717920771, true) threw exception Error: IndexSizeError: D OM Exception 1. 587 PASS view.setInt32(3, 1717920771, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
588 PASS view.setInt32(6, -2122291354, true) threw exception Error: IndexSizeError: DOM Exception 1. 588 PASS view.setInt32(6, -2122291354, true) threw exception IndexSizeError: Index o r size was negative, or greater than the allowed value..
589 PASS view.setInt32(9, -58490239, true) threw exception Error: IndexSizeError: DO M Exception 1. 589 PASS view.setInt32(9, -58490239, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
590 PASS view.setInt32(12, -66052, true) threw exception Error: IndexSizeError: DOM Exception 1. 590 PASS view.setInt32(12, -66052, true) threw exception IndexSizeError: Index or si ze was negative, or greater than the allowed value..
591 PASS view.setInt32(0, 66051) threw exception Error: IndexSizeError: DOM Exceptio n 1. 591 PASS view.setInt32(0, 66051) threw exception IndexSizeError: Index or size was n egative, or greater than the allowed value..
592 PASS view.setInt32(3, 56911206) threw exception Error: IndexSizeError: DOM Excep tion 1. 592 PASS view.setInt32(3, 56911206) threw exception IndexSizeError: Index or size wa s negative, or greater than the allowed value..
593 PASS view.setInt32(6, 1718059137) threw exception Error: IndexSizeError: DOM Exc eption 1. 593 PASS view.setInt32(6, 1718059137) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
594 PASS view.setInt32(9, -2122152964) threw exception Error: IndexSizeError: DOM Ex ception 1. 594 PASS view.setInt32(9, -2122152964) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
595 PASS view.setInt32(12, -50462977) threw exception Error: IndexSizeError: DOM Exc eption 1. 595 PASS view.setInt32(12, -50462977) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
596 PASS view.setUint32(0, 50462976, true) threw exception Error: IndexSizeError: DO M Exception 1. 596 PASS view.setUint32(0, 50462976, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
597 PASS view.setUint32(3, 1717920771, true) threw exception Error: IndexSizeError: DOM Exception 1. 597 PASS view.setUint32(3, 1717920771, true) threw exception IndexSizeError: Index o r size was negative, or greater than the allowed value..
598 PASS view.setUint32(6, 2172675942, true) threw exception Error: IndexSizeError: DOM Exception 1. 598 PASS view.setUint32(6, 2172675942, true) threw exception IndexSizeError: Index o r size was negative, or greater than the allowed value..
599 PASS view.setUint32(9, 4236477057, true) threw exception Error: IndexSizeError: DOM Exception 1. 599 PASS view.setUint32(9, 4236477057, true) threw exception IndexSizeError: Index o r size was negative, or greater than the allowed value..
600 PASS view.setUint32(12, 4294901244, true) threw exception Error: IndexSizeError: DOM Exception 1. 600 PASS view.setUint32(12, 4294901244, true) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
601 PASS view.setUint32(0, 66051) threw exception Error: IndexSizeError: DOM Excepti on 1. 601 PASS view.setUint32(0, 66051) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
602 PASS view.setUint32(3, 56911206) threw exception Error: IndexSizeError: DOM Exce ption 1. 602 PASS view.setUint32(3, 56911206) threw exception IndexSizeError: Index or size w as negative, or greater than the allowed value..
603 PASS view.setUint32(6, 1718059137) threw exception Error: IndexSizeError: DOM Ex ception 1. 603 PASS view.setUint32(6, 1718059137) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
604 PASS view.setUint32(9, 2172814332) threw exception Error: IndexSizeError: DOM Ex ception 1. 604 PASS view.setUint32(9, 2172814332) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
605 PASS view.setUint32(12, 4244504319) threw exception Error: IndexSizeError: DOM E xception 1. 605 PASS view.setUint32(12, 4244504319) threw exception IndexSizeError: Index or siz e was negative, or greater than the allowed value..
606 PASS view.setFloat32(0, 10, true) is undefined. 606 PASS view.setFloat32(0, 10, true) is undefined.
607 PASS view.getFloat32(0, true) is 10 607 PASS view.getFloat32(0, true) is 10
608 PASS view.setFloat32(3, 10, true) is undefined. 608 PASS view.setFloat32(3, 10, true) is undefined.
609 PASS view.getFloat32(3, true) is 10 609 PASS view.getFloat32(3, true) is 10
610 PASS view.setFloat32(7, 10, true) is undefined. 610 PASS view.setFloat32(7, 10, true) is undefined.
611 PASS view.getFloat32(7, true) is 10 611 PASS view.getFloat32(7, true) is 10
612 PASS view.setFloat32(10, 10, true) is undefined. 612 PASS view.setFloat32(10, 10, true) is undefined.
613 PASS view.getFloat32(10, true) is 10 613 PASS view.getFloat32(10, true) is 10
614 PASS view.setFloat32(0, 10, false) is undefined. 614 PASS view.setFloat32(0, 10, false) is undefined.
615 PASS view.getFloat32(0, false) is 10 615 PASS view.getFloat32(0, false) is 10
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 PASS view.setFloat64(0, -NaN, false) is undefined. 758 PASS view.setFloat64(0, -NaN, false) is undefined.
759 PASS view.getFloat64(0, false) is -NaN 759 PASS view.getFloat64(0, false) is -NaN
760 PASS view.setFloat64(3, -NaN, false) is undefined. 760 PASS view.setFloat64(3, -NaN, false) is undefined.
761 PASS view.getFloat64(3, false) is -NaN 761 PASS view.getFloat64(3, false) is -NaN
762 PASS view.setFloat64(7, -NaN, false) is undefined. 762 PASS view.setFloat64(7, -NaN, false) is undefined.
763 PASS view.getFloat64(7, false) is -NaN 763 PASS view.getFloat64(7, false) is -NaN
764 PASS view.setFloat64(10, -NaN, false) is undefined. 764 PASS view.setFloat64(10, -NaN, false) is undefined.
765 PASS view.getFloat64(10, false) is -NaN 765 PASS view.getFloat64(10, false) is -NaN
766 766
767 Test for set methods that write to negative index 767 Test for set methods that write to negative index
768 PASS view.setInt8(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1. 768 PASS view.setInt8(-1, 0) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
769 PASS view.setInt8(-2, 0) threw exception Error: IndexSizeError: DOM Exception 1. 769 PASS view.setInt8(-2, 0) threw exception IndexSizeError: Index or size was negat ive, or greater than the allowed value..
770 PASS view.setUint8(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 770 PASS view.setUint8(-1, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
771 PASS view.setUint8(-2, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 771 PASS view.setUint8(-2, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
772 PASS view.setInt16(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 772 PASS view.setInt16(-1, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
773 PASS view.setInt16(-2, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 773 PASS view.setInt16(-2, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
774 PASS view.setInt16(-3, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 774 PASS view.setInt16(-3, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
775 PASS view.setUint16(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1. 775 PASS view.setUint16(-1, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
776 PASS view.setUint16(-2, 0) threw exception Error: IndexSizeError: DOM Exception 1. 776 PASS view.setUint16(-2, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
777 PASS view.setUint16(-3, 0) threw exception Error: IndexSizeError: DOM Exception 1. 777 PASS view.setUint16(-3, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
778 PASS view.setInt32(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 778 PASS view.setInt32(-1, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
779 PASS view.setInt32(-3, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 779 PASS view.setInt32(-3, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
780 PASS view.setInt32(-5, 0) threw exception Error: IndexSizeError: DOM Exception 1 . 780 PASS view.setInt32(-5, 0) threw exception IndexSizeError: Index or size was nega tive, or greater than the allowed value..
781 PASS view.setUint32(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1. 781 PASS view.setUint32(-1, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
782 PASS view.setUint32(-3, 0) threw exception Error: IndexSizeError: DOM Exception 1. 782 PASS view.setUint32(-3, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
783 PASS view.setUint32(-5, 0) threw exception Error: IndexSizeError: DOM Exception 1. 783 PASS view.setUint32(-5, 0) threw exception IndexSizeError: Index or size was neg ative, or greater than the allowed value..
784 PASS view.setFloat32(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1. 784 PASS view.setFloat32(-1, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
785 PASS view.setFloat32(-3, 0) threw exception Error: IndexSizeError: DOM Exception 1. 785 PASS view.setFloat32(-3, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
786 PASS view.setFloat32(-5, 0) threw exception Error: IndexSizeError: DOM Exception 1. 786 PASS view.setFloat32(-5, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
787 PASS view.setFloat64(-1, 0) threw exception Error: IndexSizeError: DOM Exception 1. 787 PASS view.setFloat64(-1, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
788 PASS view.setFloat64(-5, 0) threw exception Error: IndexSizeError: DOM Exception 1. 788 PASS view.setFloat64(-5, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
789 PASS view.setFloat64(-9, 0) threw exception Error: IndexSizeError: DOM Exception 1. 789 PASS view.setFloat64(-9, 0) threw exception IndexSizeError: Index or size was ne gative, or greater than the allowed value..
790 790
791 Test for wrong arguments passed to set methods 791 Test for wrong arguments passed to set methods
792 PASS view.setInt8() threw exception TypeError: Not enough arguments. 792 PASS view.setInt8() threw exception TypeError: Not enough arguments.
793 PASS view.setUint8() threw exception TypeError: Not enough arguments. 793 PASS view.setUint8() threw exception TypeError: Not enough arguments.
794 PASS view.setInt16() threw exception TypeError: Not enough arguments. 794 PASS view.setInt16() threw exception TypeError: Not enough arguments.
795 PASS view.setUint16() threw exception TypeError: Not enough arguments. 795 PASS view.setUint16() threw exception TypeError: Not enough arguments.
796 PASS view.setInt32() threw exception TypeError: Not enough arguments. 796 PASS view.setInt32() threw exception TypeError: Not enough arguments.
797 PASS view.setUint32() threw exception TypeError: Not enough arguments. 797 PASS view.setUint32() threw exception TypeError: Not enough arguments.
798 PASS view.setFloat32() threw exception TypeError: Not enough arguments. 798 PASS view.setFloat32() threw exception TypeError: Not enough arguments.
799 PASS view.setFloat64() threw exception TypeError: Not enough arguments. 799 PASS view.setFloat64() threw exception TypeError: Not enough arguments.
800 PASS view.setInt8(1) threw exception TypeError: Not enough arguments. 800 PASS view.setInt8(1) threw exception TypeError: Not enough arguments.
801 PASS view.setUint8(1) threw exception TypeError: Not enough arguments. 801 PASS view.setUint8(1) threw exception TypeError: Not enough arguments.
802 PASS view.setInt16(1) threw exception TypeError: Not enough arguments. 802 PASS view.setInt16(1) threw exception TypeError: Not enough arguments.
803 PASS view.setUint16(1) threw exception TypeError: Not enough arguments. 803 PASS view.setUint16(1) threw exception TypeError: Not enough arguments.
804 PASS view.setInt32(1) threw exception TypeError: Not enough arguments. 804 PASS view.setInt32(1) threw exception TypeError: Not enough arguments.
805 PASS view.setUint32(1) threw exception TypeError: Not enough arguments. 805 PASS view.setUint32(1) threw exception TypeError: Not enough arguments.
806 PASS view.setFloat32(1) threw exception TypeError: Not enough arguments. 806 PASS view.setFloat32(1) threw exception TypeError: Not enough arguments.
807 PASS view.setFloat64(1) threw exception TypeError: Not enough arguments. 807 PASS view.setFloat64(1) threw exception TypeError: Not enough arguments.
808 808
809 Test for indexing that should not work 809 Test for indexing that should not work
810 PASS view[0] is undefined. 810 PASS view[0] is undefined.
811 PASS view[0] = 3 is defined. 811 PASS view[0] = 3 is defined.
812 PASS view.getUint8(0) is 1 812 PASS view.getUint8(0) is 1
813 PASS successfullyParsed is true 813 PASS successfullyParsed is true
814 814
815 TEST COMPLETE 815 TEST COMPLETE
816 816
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698