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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/drawImage-with-broken-image-expected.txt

Issue 2700823002: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Addressing comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 This test checks behavior of Canvas::drawImage with a broken source image.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS ctx.drawImage(null, 0, 0) threw exception TypeError: Failed to execute 'dra wImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSIm ageValue or HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBi tmap or OffscreenCanvas)'.
7 PASS ctx.drawImage(null, 0, 0, 20, 20) threw exception TypeError: Failed to exec ute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap or OffscreenCanvas)'.
8 PASS ctx.drawImage(null, 0, 0, 20, 20, 0, 0, 20, 20) threw exception TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or HTMLVideoElement or HTMLCa nvasElement or ImageBitmap or OffscreenCanvas)'.
9 PASS ctx.drawImage(undefined, 0, 0) threw exception TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '( CSSImageValue or HTMLImageElement or HTMLVideoElement or HTMLCanvasElement or Im ageBitmap or OffscreenCanvas)'.
10 PASS ctx.drawImage(undefined, 0, 0, 20, 20) threw exception TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLImageElement or HTMLVideoElement or HTMLCanvasEleme nt or ImageBitmap or OffscreenCanvas)'.
11 PASS ctx.drawImage(undefined, 0, 0, 20, 20, 0, 0, 20, 20) threw exception TypeEr ror: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided v alue is not of type '(CSSImageValue or HTMLImageElement or HTMLVideoElement or H TMLCanvasElement or ImageBitmap or OffscreenCanvas)'.
12 PASS ctx.drawImage(invalidImage, 0, 0) threw exception InvalidStateError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The HTMLImageElement prov ided is in the 'broken' state..
13 PASS ctx.drawImage(invalidImage, 0, 0, 20, 20) threw exception InvalidStateError : Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The HTMLImageElem ent provided is in the 'broken' state..
14 PASS ctx.drawImage(invalidImage, 0, 0, 20, 20, 0, 0, 20, 20) threw exception Inv alidStateError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The HTMLImageElement provided is in the 'broken' state..
15 PASS ctx.drawImage(invalidImage, 0, 0, 0, 20) threw exception InvalidStateError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The HTMLImageEleme nt provided is in the 'broken' state..
16 PASS ctx.drawImage(invalidImage, 0, 0, 0, 20, 0, 0, 20, 20) threw exception Inva lidStateError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The HTMLImageElement provided is in the 'broken' state..
17 PASS successfullyParsed is true
18
19 TEST COMPLETE
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698