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

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

Issue 7523024: Merge 91803 - Float32Array(ArrayBuffer, index, length) constructor working incorrectly. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 5 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 test Float32Array SetAndGetPos10ToNeg10 5 PASS test Float32Array SetAndGetPos10ToNeg10
6 PASS test Float32Array ConstructWithArrayOfSignedValues 6 PASS test Float32Array ConstructWithArrayOfSignedValues
7 PASS test Float32Array ConstructWithTypedArrayOfSignedValues 7 PASS test Float32Array ConstructWithTypedArrayOfSignedValues
8 Testing Float32Array GetWithOutOfRangeIndices 8 Testing Float32Array GetWithOutOfRangeIndices
9 PASS array[2] is undefined. 9 PASS array[2] is undefined.
10 PASS array[-1] is undefined. 10 PASS array[-1] is undefined.
11 PASS array[0x20000000] is undefined. 11 PASS array[0x20000000] is undefined.
12 PASS test Float32Array OffsetsAndSizes 12 PASS test Float32Array OffsetsAndSizes
13 PASS test Float32Array SetFromTypedArray 13 PASS test Float32Array SetFromTypedArray
14 PASS negativeTest Float32Array SetFromTypedArray 14 PASS negativeTest Float32Array SetFromTypedArray
15 PASS test Float32Array SetFromArray 15 PASS test Float32Array SetFromArray
16 PASS negativeTest Float32Array SetFromArray 16 PASS negativeTest Float32Array SetFromArray
17 PASS test Float32Array Subarray 17 PASS test Float32Array Subarray
18 PASS negativeTest Float32Array Subarray 18 PASS negativeTest Float32Array Subarray
19 PASS test Float32Array SetBoundaryConditions 19 PASS test Float32Array SetBoundaryConditions
20 PASS test Float32Array ConstructionBoundaryConditions 20 PASS test Float32Array ConstructionBoundaryConditions
21 PASS Construction of Float32Array with null buffer threw exception 21 PASS Construction of Float32Array with null buffer threw exception
22 PASS Construction of Float32Array with (null buffer, 0) threw exception 22 PASS Construction of Float32Array with (null buffer, 0) threw exception
23 PASS Construction of Float32Array with (null buffer, 0, 0) threw exception 23 PASS Construction of Float32Array with (null buffer, 0, 0) threw exception
24 PASS Construction of Float32Array with out-of-range values threw an exception 24 PASS Construction of Float32Array with out-of-range number of elements threw an exception
25 PASS Construction of Float32Array with out-of-range offset threw an exception
25 PASS Construction of ArrayBuffer with negative size threw exception 26 PASS Construction of ArrayBuffer with negative size threw exception
26 PASS Construction of Float32Array with negative size threw exception 27 PASS Construction of Float32Array with negative size threw exception
27 PASS Construction of Float32Array with negative out-of-range values threw an exc eption 28 PASS Construction of Float32Array with negative out-of-range values threw an exc eption
28 PASS Construction of Float32Array with unaligned offset threw an exception 29 PASS Construction of Float32Array with unaligned offset threw an exception
29 PASS Construction of Float32Array with unaligned length threw an exception 30 PASS Construction of Float32Array with unaligned length threw an exception
30 PASS Construction of huge Float32Array threw exception 31 PASS Construction of huge Float32Array threw exception
31 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 32 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
33 PASS new Float32Array(new ArrayBuffer(18), 0, 2) succeeded
32 Testing subarray of Float32Array 34 Testing subarray of Float32Array
33 PASS array.length is 32 / typeSize 35 PASS array.length is 32 / typeSize
34 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 36 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
35 PASS array.subarray(4, -2147483648).length is 0 37 PASS array.subarray(4, -2147483648).length is 0
36 PASS array.length is 0 38 PASS array.length is 0
37 Testing subarray with default inputs of Float32Array 39 Testing subarray with default inputs of Float32Array
38 PASS array.length is 32 / typeSize 40 PASS array.length is 32 / typeSize
39 PASS array.subarray(0).length is (32 / typeSize) 41 PASS array.subarray(0).length is (32 / typeSize)
40 PASS array.subarray(2).length is (32 / typeSize) - 2 42 PASS array.subarray(2).length is (32 / typeSize) - 2
41 PASS array.subarray(-2).length is 2 43 PASS array.subarray(-2).length is 2
(...skipping 16 matching lines...) Expand all
58 PASS negativeTest Float64Array SetFromTypedArray 60 PASS negativeTest Float64Array SetFromTypedArray
59 PASS test Float64Array SetFromArray 61 PASS test Float64Array SetFromArray
60 PASS negativeTest Float64Array SetFromArray 62 PASS negativeTest Float64Array SetFromArray
61 PASS test Float64Array Subarray 63 PASS test Float64Array Subarray
62 PASS negativeTest Float64Array Subarray 64 PASS negativeTest Float64Array Subarray
63 PASS test Float64Array SetBoundaryConditions 65 PASS test Float64Array SetBoundaryConditions
64 PASS test Float64Array ConstructionBoundaryConditions 66 PASS test Float64Array ConstructionBoundaryConditions
65 PASS Construction of Float64Array with null buffer threw exception 67 PASS Construction of Float64Array with null buffer threw exception
66 PASS Construction of Float64Array with (null buffer, 0) threw exception 68 PASS Construction of Float64Array with (null buffer, 0) threw exception
67 PASS Construction of Float64Array with (null buffer, 0, 0) threw exception 69 PASS Construction of Float64Array with (null buffer, 0, 0) threw exception
68 PASS Construction of Float64Array with out-of-range values threw an exception 70 PASS Construction of Float64Array with out-of-range number of elements threw an exception
71 PASS Construction of Float64Array with out-of-range offset threw an exception
69 PASS Construction of ArrayBuffer with negative size threw exception 72 PASS Construction of ArrayBuffer with negative size threw exception
70 PASS Construction of Float64Array with negative size threw exception 73 PASS Construction of Float64Array with negative size threw exception
71 PASS Construction of Float64Array with negative out-of-range values threw an exc eption 74 PASS Construction of Float64Array with negative out-of-range values threw an exc eption
72 PASS Construction of Float64Array with unaligned offset threw an exception 75 PASS Construction of Float64Array with unaligned offset threw an exception
73 PASS Construction of Float64Array with unaligned length threw an exception 76 PASS Construction of Float64Array with unaligned length threw an exception
74 PASS Construction of huge Float64Array threw exception 77 PASS Construction of huge Float64Array threw exception
75 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 78 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
79 PASS new Float64Array(new ArrayBuffer(36), 0, 2) succeeded
76 Testing subarray of Float64Array 80 Testing subarray of Float64Array
77 PASS array.length is 32 / typeSize 81 PASS array.length is 32 / typeSize
78 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 82 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
79 PASS array.subarray(4, -2147483648).length is 0 83 PASS array.subarray(4, -2147483648).length is 0
80 PASS array.length is 0 84 PASS array.length is 0
81 Testing subarray with default inputs of Float64Array 85 Testing subarray with default inputs of Float64Array
82 PASS array.length is 32 / typeSize 86 PASS array.length is 32 / typeSize
83 PASS array.subarray(0).length is (32 / typeSize) 87 PASS array.subarray(0).length is (32 / typeSize)
84 PASS array.subarray(2).length is (32 / typeSize) - 2 88 PASS array.subarray(2).length is (32 / typeSize) - 2
85 PASS array.subarray(-2).length is 2 89 PASS array.subarray(-2).length is 2
(...skipping 17 matching lines...) Expand all
103 PASS negativeTest Int8Array SetFromTypedArray 107 PASS negativeTest Int8Array SetFromTypedArray
104 PASS test Int8Array SetFromArray 108 PASS test Int8Array SetFromArray
105 PASS negativeTest Int8Array SetFromArray 109 PASS negativeTest Int8Array SetFromArray
106 PASS test Int8Array Subarray 110 PASS test Int8Array Subarray
107 PASS negativeTest Int8Array Subarray 111 PASS negativeTest Int8Array Subarray
108 PASS test Int8Array SetBoundaryConditions 112 PASS test Int8Array SetBoundaryConditions
109 PASS test Int8Array ConstructionBoundaryConditions 113 PASS test Int8Array ConstructionBoundaryConditions
110 PASS Construction of Int8Array with null buffer threw exception 114 PASS Construction of Int8Array with null buffer threw exception
111 PASS Construction of Int8Array with (null buffer, 0) threw exception 115 PASS Construction of Int8Array with (null buffer, 0) threw exception
112 PASS Construction of Int8Array with (null buffer, 0, 0) threw exception 116 PASS Construction of Int8Array with (null buffer, 0, 0) threw exception
113 PASS Construction of Int8Array with out-of-range values threw an exception 117 PASS Construction of Int8Array with out-of-range number of elements threw an exc eption
118 PASS Construction of Int8Array with out-of-range offset threw an exception
114 PASS Construction of ArrayBuffer with negative size threw exception 119 PASS Construction of ArrayBuffer with negative size threw exception
115 PASS Construction of Int8Array with negative size threw exception 120 PASS Construction of Int8Array with negative size threw exception
116 PASS Construction of Int8Array with negative out-of-range values threw an except ion 121 PASS Construction of Int8Array with negative out-of-range values threw an except ion
117 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 122 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
118 Testing subarray of Int8Array 123 Testing subarray of Int8Array
119 PASS array.length is 32 / typeSize 124 PASS array.length is 32 / typeSize
120 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 125 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
121 PASS array.subarray(4, -2147483648).length is 0 126 PASS array.subarray(4, -2147483648).length is 0
122 Testing subarray with default inputs of Int8Array 127 Testing subarray with default inputs of Int8Array
123 PASS array.length is 32 / typeSize 128 PASS array.length is 32 / typeSize
(...skipping 20 matching lines...) Expand all
144 PASS negativeTest Int16Array SetFromTypedArray 149 PASS negativeTest Int16Array SetFromTypedArray
145 PASS test Int16Array SetFromArray 150 PASS test Int16Array SetFromArray
146 PASS negativeTest Int16Array SetFromArray 151 PASS negativeTest Int16Array SetFromArray
147 PASS test Int16Array Subarray 152 PASS test Int16Array Subarray
148 PASS negativeTest Int16Array Subarray 153 PASS negativeTest Int16Array Subarray
149 PASS test Int16Array SetBoundaryConditions 154 PASS test Int16Array SetBoundaryConditions
150 PASS test Int16Array ConstructionBoundaryConditions 155 PASS test Int16Array ConstructionBoundaryConditions
151 PASS Construction of Int16Array with null buffer threw exception 156 PASS Construction of Int16Array with null buffer threw exception
152 PASS Construction of Int16Array with (null buffer, 0) threw exception 157 PASS Construction of Int16Array with (null buffer, 0) threw exception
153 PASS Construction of Int16Array with (null buffer, 0, 0) threw exception 158 PASS Construction of Int16Array with (null buffer, 0, 0) threw exception
154 PASS Construction of Int16Array with out-of-range values threw an exception 159 PASS Construction of Int16Array with out-of-range number of elements threw an ex ception
160 PASS Construction of Int16Array with out-of-range offset threw an exception
155 PASS Construction of ArrayBuffer with negative size threw exception 161 PASS Construction of ArrayBuffer with negative size threw exception
156 PASS Construction of Int16Array with negative size threw exception 162 PASS Construction of Int16Array with negative size threw exception
157 PASS Construction of Int16Array with negative out-of-range values threw an excep tion 163 PASS Construction of Int16Array with negative out-of-range values threw an excep tion
158 PASS Construction of Int16Array with unaligned offset threw an exception 164 PASS Construction of Int16Array with unaligned offset threw an exception
159 PASS Construction of Int16Array with unaligned length threw an exception 165 PASS Construction of Int16Array with unaligned length threw an exception
160 PASS Construction of huge Int16Array threw exception 166 PASS Construction of huge Int16Array threw exception
161 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 167 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
168 PASS new Int16Array(new ArrayBuffer(9), 0, 2) succeeded
162 Testing subarray of Int16Array 169 Testing subarray of Int16Array
163 PASS array.length is 32 / typeSize 170 PASS array.length is 32 / typeSize
164 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 171 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
165 PASS array.subarray(4, -2147483648).length is 0 172 PASS array.subarray(4, -2147483648).length is 0
166 PASS array.length is 0 173 PASS array.length is 0
167 Testing subarray with default inputs of Int16Array 174 Testing subarray with default inputs of Int16Array
168 PASS array.length is 32 / typeSize 175 PASS array.length is 32 / typeSize
169 PASS array.subarray(0).length is (32 / typeSize) 176 PASS array.subarray(0).length is (32 / typeSize)
170 PASS array.subarray(2).length is (32 / typeSize) - 2 177 PASS array.subarray(2).length is (32 / typeSize) - 2
171 PASS array.subarray(-2).length is 2 178 PASS array.subarray(-2).length is 2
(...skipping 17 matching lines...) Expand all
189 PASS negativeTest Int32Array SetFromTypedArray 196 PASS negativeTest Int32Array SetFromTypedArray
190 PASS test Int32Array SetFromArray 197 PASS test Int32Array SetFromArray
191 PASS negativeTest Int32Array SetFromArray 198 PASS negativeTest Int32Array SetFromArray
192 PASS test Int32Array Subarray 199 PASS test Int32Array Subarray
193 PASS negativeTest Int32Array Subarray 200 PASS negativeTest Int32Array Subarray
194 PASS test Int32Array SetBoundaryConditions 201 PASS test Int32Array SetBoundaryConditions
195 PASS test Int32Array ConstructionBoundaryConditions 202 PASS test Int32Array ConstructionBoundaryConditions
196 PASS Construction of Int32Array with null buffer threw exception 203 PASS Construction of Int32Array with null buffer threw exception
197 PASS Construction of Int32Array with (null buffer, 0) threw exception 204 PASS Construction of Int32Array with (null buffer, 0) threw exception
198 PASS Construction of Int32Array with (null buffer, 0, 0) threw exception 205 PASS Construction of Int32Array with (null buffer, 0, 0) threw exception
199 PASS Construction of Int32Array with out-of-range values threw an exception 206 PASS Construction of Int32Array with out-of-range number of elements threw an ex ception
207 PASS Construction of Int32Array with out-of-range offset threw an exception
200 PASS Construction of ArrayBuffer with negative size threw exception 208 PASS Construction of ArrayBuffer with negative size threw exception
201 PASS Construction of Int32Array with negative size threw exception 209 PASS Construction of Int32Array with negative size threw exception
202 PASS Construction of Int32Array with negative out-of-range values threw an excep tion 210 PASS Construction of Int32Array with negative out-of-range values threw an excep tion
203 PASS Construction of Int32Array with unaligned offset threw an exception 211 PASS Construction of Int32Array with unaligned offset threw an exception
204 PASS Construction of Int32Array with unaligned length threw an exception 212 PASS Construction of Int32Array with unaligned length threw an exception
205 PASS Construction of huge Int32Array threw exception 213 PASS Construction of huge Int32Array threw exception
206 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 214 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
215 PASS new Int32Array(new ArrayBuffer(18), 0, 2) succeeded
207 Testing subarray of Int32Array 216 Testing subarray of Int32Array
208 PASS array.length is 32 / typeSize 217 PASS array.length is 32 / typeSize
209 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 218 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
210 PASS array.subarray(4, -2147483648).length is 0 219 PASS array.subarray(4, -2147483648).length is 0
211 PASS array.length is 0 220 PASS array.length is 0
212 Testing subarray with default inputs of Int32Array 221 Testing subarray with default inputs of Int32Array
213 PASS array.length is 32 / typeSize 222 PASS array.length is 32 / typeSize
214 PASS array.subarray(0).length is (32 / typeSize) 223 PASS array.subarray(0).length is (32 / typeSize)
215 PASS array.subarray(2).length is (32 / typeSize) - 2 224 PASS array.subarray(2).length is (32 / typeSize) - 2
216 PASS array.subarray(-2).length is 2 225 PASS array.subarray(-2).length is 2
(...skipping 17 matching lines...) Expand all
234 PASS negativeTest Uint8Array SetFromTypedArray 243 PASS negativeTest Uint8Array SetFromTypedArray
235 PASS test Uint8Array SetFromArray 244 PASS test Uint8Array SetFromArray
236 PASS negativeTest Uint8Array SetFromArray 245 PASS negativeTest Uint8Array SetFromArray
237 PASS test Uint8Array Subarray 246 PASS test Uint8Array Subarray
238 PASS negativeTest Uint8Array Subarray 247 PASS negativeTest Uint8Array Subarray
239 PASS test Uint8Array SetBoundaryConditions 248 PASS test Uint8Array SetBoundaryConditions
240 PASS test Uint8Array ConstructionBoundaryConditions 249 PASS test Uint8Array ConstructionBoundaryConditions
241 PASS Construction of Uint8Array with null buffer threw exception 250 PASS Construction of Uint8Array with null buffer threw exception
242 PASS Construction of Uint8Array with (null buffer, 0) threw exception 251 PASS Construction of Uint8Array with (null buffer, 0) threw exception
243 PASS Construction of Uint8Array with (null buffer, 0, 0) threw exception 252 PASS Construction of Uint8Array with (null buffer, 0, 0) threw exception
244 PASS Construction of Uint8Array with out-of-range values threw an exception 253 PASS Construction of Uint8Array with out-of-range number of elements threw an ex ception
254 PASS Construction of Uint8Array with out-of-range offset threw an exception
245 PASS Construction of ArrayBuffer with negative size threw exception 255 PASS Construction of ArrayBuffer with negative size threw exception
246 PASS Construction of Uint8Array with negative size threw exception 256 PASS Construction of Uint8Array with negative size threw exception
247 PASS Construction of Uint8Array with negative out-of-range values threw an excep tion 257 PASS Construction of Uint8Array with negative out-of-range values threw an excep tion
248 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 258 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
249 Testing subarray of Uint8Array 259 Testing subarray of Uint8Array
250 PASS array.length is 32 / typeSize 260 PASS array.length is 32 / typeSize
251 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 261 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
252 PASS array.subarray(4, -2147483648).length is 0 262 PASS array.subarray(4, -2147483648).length is 0
253 Testing subarray with default inputs of Uint8Array 263 Testing subarray with default inputs of Uint8Array
254 PASS array.length is 32 / typeSize 264 PASS array.length is 32 / typeSize
(...skipping 20 matching lines...) Expand all
275 PASS negativeTest Uint16Array SetFromTypedArray 285 PASS negativeTest Uint16Array SetFromTypedArray
276 PASS test Uint16Array SetFromArray 286 PASS test Uint16Array SetFromArray
277 PASS negativeTest Uint16Array SetFromArray 287 PASS negativeTest Uint16Array SetFromArray
278 PASS test Uint16Array Subarray 288 PASS test Uint16Array Subarray
279 PASS negativeTest Uint16Array Subarray 289 PASS negativeTest Uint16Array Subarray
280 PASS test Uint16Array SetBoundaryConditions 290 PASS test Uint16Array SetBoundaryConditions
281 PASS test Uint16Array ConstructionBoundaryConditions 291 PASS test Uint16Array ConstructionBoundaryConditions
282 PASS Construction of Uint16Array with null buffer threw exception 292 PASS Construction of Uint16Array with null buffer threw exception
283 PASS Construction of Uint16Array with (null buffer, 0) threw exception 293 PASS Construction of Uint16Array with (null buffer, 0) threw exception
284 PASS Construction of Uint16Array with (null buffer, 0, 0) threw exception 294 PASS Construction of Uint16Array with (null buffer, 0, 0) threw exception
285 PASS Construction of Uint16Array with out-of-range values threw an exception 295 PASS Construction of Uint16Array with out-of-range number of elements threw an e xception
296 PASS Construction of Uint16Array with out-of-range offset threw an exception
286 PASS Construction of ArrayBuffer with negative size threw exception 297 PASS Construction of ArrayBuffer with negative size threw exception
287 PASS Construction of Uint16Array with negative size threw exception 298 PASS Construction of Uint16Array with negative size threw exception
288 PASS Construction of Uint16Array with negative out-of-range values threw an exce ption 299 PASS Construction of Uint16Array with negative out-of-range values threw an exce ption
289 PASS Construction of Uint16Array with unaligned offset threw an exception 300 PASS Construction of Uint16Array with unaligned offset threw an exception
290 PASS Construction of Uint16Array with unaligned length threw an exception 301 PASS Construction of Uint16Array with unaligned length threw an exception
291 PASS Construction of huge Uint16Array threw exception 302 PASS Construction of huge Uint16Array threw exception
292 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 303 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
304 PASS new Uint16Array(new ArrayBuffer(9), 0, 2) succeeded
293 Testing subarray of Uint16Array 305 Testing subarray of Uint16Array
294 PASS array.length is 32 / typeSize 306 PASS array.length is 32 / typeSize
295 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 307 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
296 PASS array.subarray(4, -2147483648).length is 0 308 PASS array.subarray(4, -2147483648).length is 0
297 PASS array.length is 0 309 PASS array.length is 0
298 Testing subarray with default inputs of Uint16Array 310 Testing subarray with default inputs of Uint16Array
299 PASS array.length is 32 / typeSize 311 PASS array.length is 32 / typeSize
300 PASS array.subarray(0).length is (32 / typeSize) 312 PASS array.subarray(0).length is (32 / typeSize)
301 PASS array.subarray(2).length is (32 / typeSize) - 2 313 PASS array.subarray(2).length is (32 / typeSize) - 2
302 PASS array.subarray(-2).length is 2 314 PASS array.subarray(-2).length is 2
(...skipping 17 matching lines...) Expand all
320 PASS negativeTest Uint32Array SetFromTypedArray 332 PASS negativeTest Uint32Array SetFromTypedArray
321 PASS test Uint32Array SetFromArray 333 PASS test Uint32Array SetFromArray
322 PASS negativeTest Uint32Array SetFromArray 334 PASS negativeTest Uint32Array SetFromArray
323 PASS test Uint32Array Subarray 335 PASS test Uint32Array Subarray
324 PASS negativeTest Uint32Array Subarray 336 PASS negativeTest Uint32Array Subarray
325 PASS test Uint32Array SetBoundaryConditions 337 PASS test Uint32Array SetBoundaryConditions
326 PASS test Uint32Array ConstructionBoundaryConditions 338 PASS test Uint32Array ConstructionBoundaryConditions
327 PASS Construction of Uint32Array with null buffer threw exception 339 PASS Construction of Uint32Array with null buffer threw exception
328 PASS Construction of Uint32Array with (null buffer, 0) threw exception 340 PASS Construction of Uint32Array with (null buffer, 0) threw exception
329 PASS Construction of Uint32Array with (null buffer, 0, 0) threw exception 341 PASS Construction of Uint32Array with (null buffer, 0, 0) threw exception
330 PASS Construction of Uint32Array with out-of-range values threw an exception 342 PASS Construction of Uint32Array with out-of-range number of elements threw an e xception
343 PASS Construction of Uint32Array with out-of-range offset threw an exception
331 PASS Construction of ArrayBuffer with negative size threw exception 344 PASS Construction of ArrayBuffer with negative size threw exception
332 PASS Construction of Uint32Array with negative size threw exception 345 PASS Construction of Uint32Array with negative size threw exception
333 PASS Construction of Uint32Array with negative out-of-range values threw an exce ption 346 PASS Construction of Uint32Array with negative out-of-range values threw an exce ption
334 PASS Construction of Uint32Array with unaligned offset threw an exception 347 PASS Construction of Uint32Array with unaligned offset threw an exception
335 PASS Construction of Uint32Array with unaligned length threw an exception 348 PASS Construction of Uint32Array with unaligned length threw an exception
336 PASS Construction of huge Uint32Array threw exception 349 PASS Construction of huge Uint32Array threw exception
337 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer 350 PASS Array lengths matched with explicit and implicit creation of ArrayBuffer
351 PASS new Uint32Array(new ArrayBuffer(18), 0, 2) succeeded
338 Testing subarray of Uint32Array 352 Testing subarray of Uint32Array
339 PASS array.length is 32 / typeSize 353 PASS array.length is 32 / typeSize
340 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4 354 PASS array.subarray(4, 0x3FFFFFFF).length is (32 / typeSize) - 4
341 PASS array.subarray(4, -2147483648).length is 0 355 PASS array.subarray(4, -2147483648).length is 0
342 PASS array.length is 0 356 PASS array.length is 0
343 Testing subarray with default inputs of Uint32Array 357 Testing subarray with default inputs of Uint32Array
344 PASS array.length is 32 / typeSize 358 PASS array.length is 32 / typeSize
345 PASS array.subarray(0).length is (32 / typeSize) 359 PASS array.subarray(0).length is (32 / typeSize)
346 PASS array.subarray(2).length is (32 / typeSize) - 2 360 PASS array.subarray(2).length is (32 / typeSize) - 2
347 PASS array.subarray(-2).length is 2 361 PASS array.subarray(-2).length is 2
348 PASS array.subarray(-2147483648).length is (32 / typeSize) 362 PASS array.subarray(-2147483648).length is (32 / typeSize)
349 PASS Setting Uint32Array from array with out-of-range offset was caught 363 PASS Setting Uint32Array from array with out-of-range offset was caught
350 PASS Setting Uint32Array from fake array with invalid length was caught 364 PASS Setting Uint32Array from fake array with invalid length was caught
351 PASS Setting Uint32Array from Uint32Array with out-of-range offset was caught 365 PASS Setting Uint32Array from Uint32Array with out-of-range offset was caught
352 PASS array.get is undefined. 366 PASS array.get is undefined.
353 PASS array.set(0, 1) threw exception. 367 PASS array.set(0, 1) threw exception.
354 PASS test storing NaN in Uint32Array 368 PASS test storing NaN in Uint32Array
355 Test passed. 369 Test passed.
356 PASS successfullyParsed is true 370 PASS successfullyParsed is true
357 371
358 TEST COMPLETE 372 TEST COMPLETE
359 373
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/webgl/array-unit-tests.html ('k') | Source/WebCore/bindings/js/JSArrayBufferViewHelper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698