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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-invalid-args-expected.txt

Issue 2570613002: Add OffscreenCanvas to ImageBitmapSource union typedef (Closed)
Patch Set: build fix Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 Ensure correct behavior of createImageBitmap for invalid inputs. 1 Ensure correct behavior of createImageBitmap for invalid inputs.
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 PASS Rejected as expected: undefined 6 PASS Rejected as expected: undefined
7 PASS reason instanceof Error is true 7 PASS reason instanceof Error is true
8 TypeError: Failed to execute 'createImageBitmap' on 'Window': The provided value is not of type '(HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or B lob or ImageData or ImageBitmap)' 8 TypeError: Failed to execute 'createImageBitmap' on 'Window': The provided value is not of type '(HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or B lob or ImageData or ImageBitmap or OffscreenCanvas)'
9 PASS Rejected as expected: null 9 PASS Rejected as expected: null
10 PASS reason instanceof Error is true 10 PASS reason instanceof Error is true
11 TypeError: Failed to execute 'createImageBitmap' on 'Window': The provided value is not of type '(HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or B lob or ImageData or ImageBitmap)' 11 TypeError: Failed to execute 'createImageBitmap' on 'Window': The provided value is not of type '(HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or B lob or ImageData or ImageBitmap or OffscreenCanvas)'
12 PASS Rejected as expected: empty image 12 PASS Rejected as expected: empty image
13 PASS reason instanceof Error is true 13 PASS reason instanceof Error is true
14 InvalidStateError: Failed to execute 'createImageBitmap' on 'Window': No image c an be retrieved from the provided element. 14 InvalidStateError: Failed to execute 'createImageBitmap' on 'Window': No image c an be retrieved from the provided element.
15 PASS Rejected as expected: empty video 15 PASS Rejected as expected: empty video
16 PASS reason instanceof Error is true 16 PASS reason instanceof Error is true
17 InvalidStateError: Failed to execute 'createImageBitmap' on 'Window': The provid ed element has not retrieved data. 17 InvalidStateError: Failed to execute 'createImageBitmap' on 'Window': The provid ed element has not retrieved data.
18 PASS Rejected as expected: image / invalid range 18 PASS Rejected as expected: image / invalid range
19 PASS reason instanceof Error is true 19 PASS reason instanceof Error is true
20 IndexSizeError: Failed to execute 'createImageBitmap' on 'Window': The source he ight provided is 0. 20 IndexSizeError: Failed to execute 'createImageBitmap' on 'Window': The source he ight provided is 0.
21 PASS Rejected as expected: image / invalid range 21 PASS Rejected as expected: image / invalid range
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 PASS reason instanceof Error is true 55 PASS reason instanceof Error is true
56 InvalidStateError: The source image cannot be decoded. 56 InvalidStateError: The source image cannot be decoded.
57 PASS Rejected as expected: invalid canvas 57 PASS Rejected as expected: invalid canvas
58 null 58 null
59 PASS Rejected as expected: cropRect too big 59 PASS Rejected as expected: cropRect too big
60 null 60 null
61 PASS successfullyParsed is true 61 PASS successfullyParsed is true
62 62
63 TEST COMPLETE 63 TEST COMPLETE
64 64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698