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

Side by Side Diff: LayoutTests/fast/canvas/webgl/array-unit-tests-expected.txt

Issue 11889014: Merge 139459 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 years, 11 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 Verifies the functionality of the new array-like objects in the TypedArray spec 1 Verifies the functionality of the new array-like objects in the TypedArray spec
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 PASS testSlice 5 PASS testSlice
6 test inheritance hierarchy of typed array views 6 test inheritance hierarchy of typed array views
7 PASS ArrayBufferView does not have [NoInterfaceObject] extended attribute and sh ould be defined 7 PASS ArrayBufferView does not have [NoInterfaceObject] extended attribute and sh ould be defined
8 PASS new Int8Array(1) instanceof ArrayBufferView is true 8 PASS new Int8Array(1) instanceof ArrayBufferView is true
9 PASS new Uint8Array(1) instanceof ArrayBufferView is true 9 PASS new Uint8Array(1) instanceof ArrayBufferView is true
10 PASS new Uint8ClampedArray(1) instanceof ArrayBufferView is true 10 PASS new Uint8ClampedArray(1) instanceof ArrayBufferView is true
(...skipping 19 matching lines...) Expand all
30 PASS test Float32Array SetFromArray 30 PASS test Float32Array SetFromArray
31 PASS negativeTest Float32Array SetFromArray 31 PASS negativeTest Float32Array SetFromArray
32 PASS test Float32Array Subarray 32 PASS test Float32Array Subarray
33 PASS test Float32Array Subarray offset and length clamping 33 PASS test Float32Array Subarray offset and length clamping
34 PASS negativeTest Float32Array Subarray 34 PASS negativeTest Float32Array Subarray
35 PASS test Float32Array SetBoundaryConditions 35 PASS test Float32Array SetBoundaryConditions
36 PASS test Float32Array ConstructionBoundaryConditions 36 PASS test Float32Array ConstructionBoundaryConditions
37 PASS Construction of Float32Array with null buffer threw exception 37 PASS Construction of Float32Array with null buffer threw exception
38 PASS Construction of Float32Array with (null buffer, 0) threw exception 38 PASS Construction of Float32Array with (null buffer, 0) threw exception
39 PASS Construction of Float32Array with (null buffer, 0, 0) threw exception 39 PASS Construction of Float32Array with (null buffer, 0, 0) threw exception
40 PASS Construction of Float32Array with exception-throwing array-like object didn 't crash unexpectedly
40 PASS Construction of Float32Array with out-of-range number of elements threw an exception 41 PASS Construction of Float32Array with out-of-range number of elements threw an exception
41 PASS Construction of Float32Array with out-of-range offset threw an exception 42 PASS Construction of Float32Array with out-of-range offset threw an exception
42 PASS Construction of ArrayBuffer with negative size threw exception 43 PASS Construction of ArrayBuffer with negative size threw exception
43 PASS Construction of Float32Array with negative size threw exception 44 PASS Construction of Float32Array with negative size threw exception
44 PASS Construction of Float32Array with negative out-of-range values threw an exc eption 45 PASS Construction of Float32Array with negative out-of-range values threw an exc eption
45 PASS Construction of Float32Array with unaligned offset threw an exception 46 PASS Construction of Float32Array with unaligned offset threw an exception
46 PASS Construction of Float32Array with unaligned length threw an exception 47 PASS Construction of Float32Array with unaligned length threw an exception
47 PASS Construction of huge Float32Array threw exception 48 PASS Construction of huge Float32Array threw exception
48 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 49 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
49 PASS new Float32Array(new ArrayBuffer(18), 0, 2) succeeded 50 PASS new Float32Array(new ArrayBuffer(18), 0, 2) succeeded
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 PASS test Float64Array SetFromArray 86 PASS test Float64Array SetFromArray
86 PASS negativeTest Float64Array SetFromArray 87 PASS negativeTest Float64Array SetFromArray
87 PASS test Float64Array Subarray 88 PASS test Float64Array Subarray
88 PASS test Float64Array Subarray offset and length clamping 89 PASS test Float64Array Subarray offset and length clamping
89 PASS negativeTest Float64Array Subarray 90 PASS negativeTest Float64Array Subarray
90 PASS test Float64Array SetBoundaryConditions 91 PASS test Float64Array SetBoundaryConditions
91 PASS test Float64Array ConstructionBoundaryConditions 92 PASS test Float64Array ConstructionBoundaryConditions
92 PASS Construction of Float64Array with null buffer threw exception 93 PASS Construction of Float64Array with null buffer threw exception
93 PASS Construction of Float64Array with (null buffer, 0) threw exception 94 PASS Construction of Float64Array with (null buffer, 0) threw exception
94 PASS Construction of Float64Array with (null buffer, 0, 0) threw exception 95 PASS Construction of Float64Array with (null buffer, 0, 0) threw exception
96 PASS Construction of Float64Array with exception-throwing array-like object didn 't crash unexpectedly
95 PASS Construction of Float64Array with out-of-range number of elements threw an exception 97 PASS Construction of Float64Array with out-of-range number of elements threw an exception
96 PASS Construction of Float64Array with out-of-range offset threw an exception 98 PASS Construction of Float64Array with out-of-range offset threw an exception
97 PASS Construction of ArrayBuffer with negative size threw exception 99 PASS Construction of ArrayBuffer with negative size threw exception
98 PASS Construction of Float64Array with negative size threw exception 100 PASS Construction of Float64Array with negative size threw exception
99 PASS Construction of Float64Array with negative out-of-range values threw an exc eption 101 PASS Construction of Float64Array with negative out-of-range values threw an exc eption
100 PASS Construction of Float64Array with unaligned offset threw an exception 102 PASS Construction of Float64Array with unaligned offset threw an exception
101 PASS Construction of Float64Array with unaligned length threw an exception 103 PASS Construction of Float64Array with unaligned length threw an exception
102 PASS Construction of huge Float64Array threw exception 104 PASS Construction of huge Float64Array threw exception
103 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 105 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
104 PASS new Float64Array(new ArrayBuffer(36), 0, 2) succeeded 106 PASS new Float64Array(new ArrayBuffer(36), 0, 2) succeeded
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 PASS test Int8Array SetFromArray 143 PASS test Int8Array SetFromArray
142 PASS negativeTest Int8Array SetFromArray 144 PASS negativeTest Int8Array SetFromArray
143 PASS test Int8Array Subarray 145 PASS test Int8Array Subarray
144 PASS test Int8Array Subarray offset and length clamping 146 PASS test Int8Array Subarray offset and length clamping
145 PASS negativeTest Int8Array Subarray 147 PASS negativeTest Int8Array Subarray
146 PASS test Int8Array SetBoundaryConditions 148 PASS test Int8Array SetBoundaryConditions
147 PASS test Int8Array ConstructionBoundaryConditions 149 PASS test Int8Array ConstructionBoundaryConditions
148 PASS Construction of Int8Array with null buffer threw exception 150 PASS Construction of Int8Array with null buffer threw exception
149 PASS Construction of Int8Array with (null buffer, 0) threw exception 151 PASS Construction of Int8Array with (null buffer, 0) threw exception
150 PASS Construction of Int8Array with (null buffer, 0, 0) threw exception 152 PASS Construction of Int8Array with (null buffer, 0, 0) threw exception
153 PASS Construction of Int8Array with exception-throwing array-like object didn't crash unexpectedly
151 PASS Construction of Int8Array with out-of-range number of elements threw an exc eption 154 PASS Construction of Int8Array with out-of-range number of elements threw an exc eption
152 PASS Construction of Int8Array with out-of-range offset threw an exception 155 PASS Construction of Int8Array with out-of-range offset threw an exception
153 PASS Construction of ArrayBuffer with negative size threw exception 156 PASS Construction of ArrayBuffer with negative size threw exception
154 PASS Construction of Int8Array with negative size threw exception 157 PASS Construction of Int8Array with negative size threw exception
155 PASS Construction of Int8Array with negative out-of-range values threw an except ion 158 PASS Construction of Int8Array with negative out-of-range values threw an except ion
156 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 159 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
157 Testing subarray of Int8Array 160 Testing subarray of Int8Array
158 PASS array.length is 32 / typeSize 161 PASS array.length is 32 / typeSize
159 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 162 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
160 PASS array.subarray(4, -2147483648).length is 0 163 PASS array.subarray(4, -2147483648).length is 0
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 PASS test Int16Array SetFromArray 195 PASS test Int16Array SetFromArray
193 PASS negativeTest Int16Array SetFromArray 196 PASS negativeTest Int16Array SetFromArray
194 PASS test Int16Array Subarray 197 PASS test Int16Array Subarray
195 PASS test Int16Array Subarray offset and length clamping 198 PASS test Int16Array Subarray offset and length clamping
196 PASS negativeTest Int16Array Subarray 199 PASS negativeTest Int16Array Subarray
197 PASS test Int16Array SetBoundaryConditions 200 PASS test Int16Array SetBoundaryConditions
198 PASS test Int16Array ConstructionBoundaryConditions 201 PASS test Int16Array ConstructionBoundaryConditions
199 PASS Construction of Int16Array with null buffer threw exception 202 PASS Construction of Int16Array with null buffer threw exception
200 PASS Construction of Int16Array with (null buffer, 0) threw exception 203 PASS Construction of Int16Array with (null buffer, 0) threw exception
201 PASS Construction of Int16Array with (null buffer, 0, 0) threw exception 204 PASS Construction of Int16Array with (null buffer, 0, 0) threw exception
205 PASS Construction of Int16Array with exception-throwing array-like object didn't crash unexpectedly
202 PASS Construction of Int16Array with out-of-range number of elements threw an ex ception 206 PASS Construction of Int16Array with out-of-range number of elements threw an ex ception
203 PASS Construction of Int16Array with out-of-range offset threw an exception 207 PASS Construction of Int16Array with out-of-range offset threw an exception
204 PASS Construction of ArrayBuffer with negative size threw exception 208 PASS Construction of ArrayBuffer with negative size threw exception
205 PASS Construction of Int16Array with negative size threw exception 209 PASS Construction of Int16Array with negative size threw exception
206 PASS Construction of Int16Array with negative out-of-range values threw an excep tion 210 PASS Construction of Int16Array with negative out-of-range values threw an excep tion
207 PASS Construction of Int16Array with unaligned offset threw an exception 211 PASS Construction of Int16Array with unaligned offset threw an exception
208 PASS Construction of Int16Array with unaligned length threw an exception 212 PASS Construction of Int16Array with unaligned length threw an exception
209 PASS Construction of huge Int16Array threw exception 213 PASS Construction of huge Int16Array threw exception
210 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 214 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
211 PASS new Int16Array(new ArrayBuffer(9), 0, 2) succeeded 215 PASS new Int16Array(new ArrayBuffer(9), 0, 2) succeeded
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 PASS test Int32Array SetFromArray 252 PASS test Int32Array SetFromArray
249 PASS negativeTest Int32Array SetFromArray 253 PASS negativeTest Int32Array SetFromArray
250 PASS test Int32Array Subarray 254 PASS test Int32Array Subarray
251 PASS test Int32Array Subarray offset and length clamping 255 PASS test Int32Array Subarray offset and length clamping
252 PASS negativeTest Int32Array Subarray 256 PASS negativeTest Int32Array Subarray
253 PASS test Int32Array SetBoundaryConditions 257 PASS test Int32Array SetBoundaryConditions
254 PASS test Int32Array ConstructionBoundaryConditions 258 PASS test Int32Array ConstructionBoundaryConditions
255 PASS Construction of Int32Array with null buffer threw exception 259 PASS Construction of Int32Array with null buffer threw exception
256 PASS Construction of Int32Array with (null buffer, 0) threw exception 260 PASS Construction of Int32Array with (null buffer, 0) threw exception
257 PASS Construction of Int32Array with (null buffer, 0, 0) threw exception 261 PASS Construction of Int32Array with (null buffer, 0, 0) threw exception
262 PASS Construction of Int32Array with exception-throwing array-like object didn't crash unexpectedly
258 PASS Construction of Int32Array with out-of-range number of elements threw an ex ception 263 PASS Construction of Int32Array with out-of-range number of elements threw an ex ception
259 PASS Construction of Int32Array with out-of-range offset threw an exception 264 PASS Construction of Int32Array with out-of-range offset threw an exception
260 PASS Construction of ArrayBuffer with negative size threw exception 265 PASS Construction of ArrayBuffer with negative size threw exception
261 PASS Construction of Int32Array with negative size threw exception 266 PASS Construction of Int32Array with negative size threw exception
262 PASS Construction of Int32Array with negative out-of-range values threw an excep tion 267 PASS Construction of Int32Array with negative out-of-range values threw an excep tion
263 PASS Construction of Int32Array with unaligned offset threw an exception 268 PASS Construction of Int32Array with unaligned offset threw an exception
264 PASS Construction of Int32Array with unaligned length threw an exception 269 PASS Construction of Int32Array with unaligned length threw an exception
265 PASS Construction of huge Int32Array threw exception 270 PASS Construction of huge Int32Array threw exception
266 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 271 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
267 PASS new Int32Array(new ArrayBuffer(18), 0, 2) succeeded 272 PASS new Int32Array(new ArrayBuffer(18), 0, 2) succeeded
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 PASS test Uint8Array SetFromArray 309 PASS test Uint8Array SetFromArray
305 PASS negativeTest Uint8Array SetFromArray 310 PASS negativeTest Uint8Array SetFromArray
306 PASS test Uint8Array Subarray 311 PASS test Uint8Array Subarray
307 PASS test Uint8Array Subarray offset and length clamping 312 PASS test Uint8Array Subarray offset and length clamping
308 PASS negativeTest Uint8Array Subarray 313 PASS negativeTest Uint8Array Subarray
309 PASS test Uint8Array SetBoundaryConditions 314 PASS test Uint8Array SetBoundaryConditions
310 PASS test Uint8Array ConstructionBoundaryConditions 315 PASS test Uint8Array ConstructionBoundaryConditions
311 PASS Construction of Uint8Array with null buffer threw exception 316 PASS Construction of Uint8Array with null buffer threw exception
312 PASS Construction of Uint8Array with (null buffer, 0) threw exception 317 PASS Construction of Uint8Array with (null buffer, 0) threw exception
313 PASS Construction of Uint8Array with (null buffer, 0, 0) threw exception 318 PASS Construction of Uint8Array with (null buffer, 0, 0) threw exception
319 PASS Construction of Uint8Array with exception-throwing array-like object didn't crash unexpectedly
314 PASS Construction of Uint8Array with out-of-range number of elements threw an ex ception 320 PASS Construction of Uint8Array with out-of-range number of elements threw an ex ception
315 PASS Construction of Uint8Array with out-of-range offset threw an exception 321 PASS Construction of Uint8Array with out-of-range offset threw an exception
316 PASS Construction of ArrayBuffer with negative size threw exception 322 PASS Construction of ArrayBuffer with negative size threw exception
317 PASS Construction of Uint8Array with negative size threw exception 323 PASS Construction of Uint8Array with negative size threw exception
318 PASS Construction of Uint8Array with negative out-of-range values threw an excep tion 324 PASS Construction of Uint8Array with negative out-of-range values threw an excep tion
319 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 325 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
320 Testing subarray of Uint8Array 326 Testing subarray of Uint8Array
321 PASS array.length is 32 / typeSize 327 PASS array.length is 32 / typeSize
322 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 328 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
323 PASS array.subarray(4, -2147483648).length is 0 329 PASS array.subarray(4, -2147483648).length is 0
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 PASS test Uint8ClampedArray SetFromArray 361 PASS test Uint8ClampedArray SetFromArray
356 PASS negativeTest Uint8ClampedArray SetFromArray 362 PASS negativeTest Uint8ClampedArray SetFromArray
357 PASS test Uint8ClampedArray Subarray 363 PASS test Uint8ClampedArray Subarray
358 PASS test Uint8ClampedArray Subarray offset and length clamping 364 PASS test Uint8ClampedArray Subarray offset and length clamping
359 PASS negativeTest Uint8ClampedArray Subarray 365 PASS negativeTest Uint8ClampedArray Subarray
360 PASS test Uint8ClampedArray SetBoundaryConditions 366 PASS test Uint8ClampedArray SetBoundaryConditions
361 PASS test Uint8ClampedArray ConstructionBoundaryConditions 367 PASS test Uint8ClampedArray ConstructionBoundaryConditions
362 PASS Construction of Uint8ClampedArray with null buffer threw exception 368 PASS Construction of Uint8ClampedArray with null buffer threw exception
363 PASS Construction of Uint8ClampedArray with (null buffer, 0) threw exception 369 PASS Construction of Uint8ClampedArray with (null buffer, 0) threw exception
364 PASS Construction of Uint8ClampedArray with (null buffer, 0, 0) threw exception 370 PASS Construction of Uint8ClampedArray with (null buffer, 0, 0) threw exception
371 PASS Construction of Uint8ClampedArray with exception-throwing array-like object didn't crash unexpectedly
365 PASS Construction of Uint8ClampedArray with out-of-range number of elements thre w an exception 372 PASS Construction of Uint8ClampedArray with out-of-range number of elements thre w an exception
366 PASS Construction of Uint8ClampedArray with out-of-range offset threw an excepti on 373 PASS Construction of Uint8ClampedArray with out-of-range offset threw an excepti on
367 PASS Construction of ArrayBuffer with negative size threw exception 374 PASS Construction of ArrayBuffer with negative size threw exception
368 PASS Construction of Uint8ClampedArray with negative size threw exception 375 PASS Construction of Uint8ClampedArray with negative size threw exception
369 PASS Construction of Uint8ClampedArray with negative out-of-range values threw a n exception 376 PASS Construction of Uint8ClampedArray with negative out-of-range values threw a n exception
370 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 377 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
371 Testing subarray of Uint8ClampedArray 378 Testing subarray of Uint8ClampedArray
372 PASS array.length is 32 / typeSize 379 PASS array.length is 32 / typeSize
373 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 380 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
374 PASS array.subarray(4, -2147483648).length is 0 381 PASS array.subarray(4, -2147483648).length is 0
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 PASS test Uint16Array SetFromArray 413 PASS test Uint16Array SetFromArray
407 PASS negativeTest Uint16Array SetFromArray 414 PASS negativeTest Uint16Array SetFromArray
408 PASS test Uint16Array Subarray 415 PASS test Uint16Array Subarray
409 PASS test Uint16Array Subarray offset and length clamping 416 PASS test Uint16Array Subarray offset and length clamping
410 PASS negativeTest Uint16Array Subarray 417 PASS negativeTest Uint16Array Subarray
411 PASS test Uint16Array SetBoundaryConditions 418 PASS test Uint16Array SetBoundaryConditions
412 PASS test Uint16Array ConstructionBoundaryConditions 419 PASS test Uint16Array ConstructionBoundaryConditions
413 PASS Construction of Uint16Array with null buffer threw exception 420 PASS Construction of Uint16Array with null buffer threw exception
414 PASS Construction of Uint16Array with (null buffer, 0) threw exception 421 PASS Construction of Uint16Array with (null buffer, 0) threw exception
415 PASS Construction of Uint16Array with (null buffer, 0, 0) threw exception 422 PASS Construction of Uint16Array with (null buffer, 0, 0) threw exception
423 PASS Construction of Uint16Array with exception-throwing array-like object didn' t crash unexpectedly
416 PASS Construction of Uint16Array with out-of-range number of elements threw an e xception 424 PASS Construction of Uint16Array with out-of-range number of elements threw an e xception
417 PASS Construction of Uint16Array with out-of-range offset threw an exception 425 PASS Construction of Uint16Array with out-of-range offset threw an exception
418 PASS Construction of ArrayBuffer with negative size threw exception 426 PASS Construction of ArrayBuffer with negative size threw exception
419 PASS Construction of Uint16Array with negative size threw exception 427 PASS Construction of Uint16Array with negative size threw exception
420 PASS Construction of Uint16Array with negative out-of-range values threw an exce ption 428 PASS Construction of Uint16Array with negative out-of-range values threw an exce ption
421 PASS Construction of Uint16Array with unaligned offset threw an exception 429 PASS Construction of Uint16Array with unaligned offset threw an exception
422 PASS Construction of Uint16Array with unaligned length threw an exception 430 PASS Construction of Uint16Array with unaligned length threw an exception
423 PASS Construction of huge Uint16Array threw exception 431 PASS Construction of huge Uint16Array threw exception
424 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 432 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
425 PASS new Uint16Array(new ArrayBuffer(9), 0, 2) succeeded 433 PASS new Uint16Array(new ArrayBuffer(9), 0, 2) succeeded
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 PASS test Uint32Array SetFromArray 470 PASS test Uint32Array SetFromArray
463 PASS negativeTest Uint32Array SetFromArray 471 PASS negativeTest Uint32Array SetFromArray
464 PASS test Uint32Array Subarray 472 PASS test Uint32Array Subarray
465 PASS test Uint32Array Subarray offset and length clamping 473 PASS test Uint32Array Subarray offset and length clamping
466 PASS negativeTest Uint32Array Subarray 474 PASS negativeTest Uint32Array Subarray
467 PASS test Uint32Array SetBoundaryConditions 475 PASS test Uint32Array SetBoundaryConditions
468 PASS test Uint32Array ConstructionBoundaryConditions 476 PASS test Uint32Array ConstructionBoundaryConditions
469 PASS Construction of Uint32Array with null buffer threw exception 477 PASS Construction of Uint32Array with null buffer threw exception
470 PASS Construction of Uint32Array with (null buffer, 0) threw exception 478 PASS Construction of Uint32Array with (null buffer, 0) threw exception
471 PASS Construction of Uint32Array with (null buffer, 0, 0) threw exception 479 PASS Construction of Uint32Array with (null buffer, 0, 0) threw exception
480 PASS Construction of Uint32Array with exception-throwing array-like object didn' t crash unexpectedly
472 PASS Construction of Uint32Array with out-of-range number of elements threw an e xception 481 PASS Construction of Uint32Array with out-of-range number of elements threw an e xception
473 PASS Construction of Uint32Array with out-of-range offset threw an exception 482 PASS Construction of Uint32Array with out-of-range offset threw an exception
474 PASS Construction of ArrayBuffer with negative size threw exception 483 PASS Construction of ArrayBuffer with negative size threw exception
475 PASS Construction of Uint32Array with negative size threw exception 484 PASS Construction of Uint32Array with negative size threw exception
476 PASS Construction of Uint32Array with negative out-of-range values threw an exce ption 485 PASS Construction of Uint32Array with negative out-of-range values threw an exce ption
477 PASS Construction of Uint32Array with unaligned offset threw an exception 486 PASS Construction of Uint32Array with unaligned offset threw an exception
478 PASS Construction of Uint32Array with unaligned length threw an exception 487 PASS Construction of Uint32Array with unaligned length threw an exception
479 PASS Construction of huge Uint32Array threw exception 488 PASS Construction of huge Uint32Array threw exception
480 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 489 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
481 PASS new Uint32Array(new ArrayBuffer(18), 0, 2) succeeded 490 PASS new Uint32Array(new ArrayBuffer(18), 0, 2) succeeded
(...skipping 20 matching lines...) Expand all
502 PASS Setting Uint32Array from Uint32Array with non-integer offset 511 PASS Setting Uint32Array from Uint32Array with non-integer offset
503 PASS Setting Uint32Array from fake array with invalid length was caught 512 PASS Setting Uint32Array from fake array with invalid length was caught
504 PASS array.get is undefined. 513 PASS array.get is undefined.
505 PASS array.set(0, 1) threw exception. 514 PASS array.set(0, 1) threw exception.
506 PASS test storing NaN in Uint32Array 515 PASS test storing NaN in Uint32Array
507 Test passed. 516 Test passed.
508 PASS successfullyParsed is true 517 PASS successfullyParsed is true
509 518
510 TEST COMPLETE 519 TEST COMPLETE
511 520
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/array-unit-tests.html ('k') | Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustom.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698