X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FLayoutTests%2Ffast%2Fcanvas%2Fcanvas-getImageData-invalid-expected.txt;h=565c9b1af19b0556764c8939598089b41783a627;hb=004985e17e624662a4c85c76a7654039dc83f028;hp=e4669f7e64485061d4f938062420b61e51b3fde2;hpb=2f108dbacb161091e42a3479f4e171339b7e7623;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-invalid-expected.txt b/src/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-invalid-expected.txt index e4669f7..565c9b1 100644 --- a/src/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-invalid-expected.txt +++ b/src/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-invalid-expected.txt @@ -3,18 +3,18 @@ Test the handling of invalid arguments in canvas getImageData(). On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". -PASS ctx.getImageData(NaN, 10, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source X is not a number.. -PASS ctx.getImageData(10, NaN, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source Y is not a number.. -PASS ctx.getImageData(10, 10, NaN, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source width is not a number.. -PASS ctx.getImageData(10, 10, 10, NaN) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source height is not a number.. -PASS ctx.getImageData(Infinity, 10, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source X is infinite.. -PASS ctx.getImageData(10, Infinity, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source Y is infinite.. -PASS ctx.getImageData(10, 10, Infinity, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source width is infinite.. -PASS ctx.getImageData(10, 10, 10, Infinity) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source height is infinite.. -PASS ctx.getImageData(undefined, 10, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source X is not a number.. -PASS ctx.getImageData(10, undefined, 10, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source Y is not a number.. -PASS ctx.getImageData(10, 10, undefined, 10) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source width is not a number.. -PASS ctx.getImageData(10, 10, 10, undefined) threw exception NotSupportedError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source height is not a number.. +PASS ctx.getImageData(NaN, 10, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 1 is non-finite.. +PASS ctx.getImageData(10, NaN, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 2 is non-finite.. +PASS ctx.getImageData(10, 10, NaN, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 3 is non-finite.. +PASS ctx.getImageData(10, 10, 10, NaN) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 4 is non-finite.. +PASS ctx.getImageData(Infinity, 10, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 1 is non-finite.. +PASS ctx.getImageData(10, Infinity, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 2 is non-finite.. +PASS ctx.getImageData(10, 10, Infinity, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 3 is non-finite.. +PASS ctx.getImageData(10, 10, 10, Infinity) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 4 is non-finite.. +PASS ctx.getImageData(undefined, 10, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 1 is non-finite.. +PASS ctx.getImageData(10, undefined, 10, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 2 is non-finite.. +PASS ctx.getImageData(10, 10, undefined, 10) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 3 is non-finite.. +PASS ctx.getImageData(10, 10, 10, undefined) threw exception TypeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': float parameter 4 is non-finite.. PASS ctx.getImageData(10, 10, 0, 10) threw exception IndexSizeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source width is 0.. PASS ctx.getImageData(10, 10, 10, 0) threw exception IndexSizeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The source height is 0.. PASS successfullyParsed is true