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

Side by Side Diff: LayoutTests/fast/canvas/canvas-path-addpath-expected.txt

Issue 170503002: Implement addPath() method for Path object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 Test addPath() method.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 Test addPath() with transform as identity matrix.
7 PASS imgdata[4] is 255
8 PASS imgdata[5] is 255
9 PASS imgdata[6] is 0
10 PASS imgdata[7] is 255
11
12 Test addPath() with transform as translate(100, -100).
13 PASS imgdata[4] is 255
14 PASS imgdata[5] is 255
15 PASS imgdata[6] is 0
16 PASS imgdata[7] is 255
17
18 Test addPath() with non-invertible transform.
19 PASS imgdata[4] is not 255
20 PASS imgdata[5] is not 255
21 PASS imgdata[6] is 0
22 PASS imgdata[7] is not 255
23
24 Test addPath() with transform as null or invalid type.
25 PASS imgdata[4] is 255
26 PASS imgdata[5] is 0
27 PASS imgdata[6] is 0
28 PASS imgdata[7] is 255
29
30 Test addPath() with path as null and invalid type
31 PASS p7.addPath(null, m) threw exception TypeMismatchError: Failed to execute 'a ddPath' on 'Path': The 1st argument provided is either null, or an invalid Path object..
32 PASS p7.addPath([], m) threw exception TypeMismatchError: Failed to execute 'add Path' on 'Path': The 1st argument provided is either null, or an invalid Path ob ject..
33 PASS p7.addPath({}, m) threw exception TypeMismatchError: Failed to execute 'add Path' on 'Path': The 1st argument provided is either null, or an invalid Path ob ject..
34
35 PASS successfullyParsed is true
36
37 TEST COMPLETE
38
OLDNEW
« no previous file with comments | « LayoutTests/fast/canvas/canvas-path-addpath.html ('k') | LayoutTests/fast/canvas/script-tests/canvas-path-addpath.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698