Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / canvas-negative-size-expected.txt
blobe9f3fb90464b78fc6a8473d053f560cecfc5bbd1
1 Test that canvas elements can't have negative height and/or width.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS checkDefaultWidth() is 300
7 PASS checkDefaultHeight() is 150
8 FAIL trySettingWidth('abc') should be 300. Was 0.
9 PASS trySettingWidth('200') is 200
10 PASS trySettingWidth('300') is 300
11 FAIL trySettingWidth(NaN) should be 300. Was 0.
12 FAIL trySettingWidth(Infinity) should be 300. Was 0.
13 FAIL trySettingWidth(null) should be 300. Was 0.
14 PASS trySettingWidth(true) is 1
15 PASS trySettingWidth(false) is 0
16 FAIL trySettingHeight('abc') should be 150. Was 0.
17 PASS trySettingHeight('200') is 200
18 PASS trySettingHeight('150') is 150
19 FAIL trySettingHeight(NaN) should be 150. Was 0.
20 FAIL trySettingHeight(Infinity) should be 150. Was 0.
21 FAIL trySettingHeight(null) should be 150. Was 0.
22 PASS trySettingHeight(true) is 1
23 PASS trySettingHeight(false) is 0
24 FAIL trySettingWidth('foo') should be 300. Was 0.
25 PASS trySettingWidthAttribute('foo') is 300
26 PASS tryCreatingCanvasWithWidth('foo') is 300
27 PASS trySettingWidth(-1) is 300
28 PASS trySettingWidthAttribute(-1) is 300
29 PASS tryCreatingCanvasWithWidth(-1) is 300
30 PASS trySettingWidth(0) is 0
31 PASS trySettingWidthAttribute(0) is 0
32 PASS tryCreatingCanvasWithWidth(0) is 0
33 PASS trySettingWidth(1) is 1
34 PASS trySettingWidthAttribute(1) is 1
35 PASS tryCreatingCanvasWithWidth(1) is 1
36 PASS trySettingWidth('+7') is 7
37 PASS trySettingWidthAttribute('+7') is 7
38 PASS tryCreatingCanvasWithWidth('+7') is 7
39 PASS trySettingWidth('-7') is 300
40 PASS trySettingWidthAttribute('-7') is 300
41 PASS tryCreatingCanvasWithWidth('-7') is 300
42 PASS trySettingWidth('123') is 123
43 PASS trySettingWidthAttribute('123') is 123
44 PASS tryCreatingCanvasWithWidth('123') is 123
45 FAIL trySettingHeight('foo') should be 150. Was 0.
46 PASS trySettingHeightAttribute('foo') is 150
47 PASS tryCreatingCanvasWithHeight('foo') is 150
48 PASS trySettingHeight(-1) is 150
49 PASS trySettingHeightAttribute(-1) is 150
50 PASS tryCreatingCanvasWithHeight(-1) is 150
51 PASS trySettingHeight(0) is 0
52 PASS trySettingHeightAttribute(0) is 0
53 PASS tryCreatingCanvasWithHeight(0) is 0
54 PASS trySettingHeight(1) is 1
55 PASS trySettingHeightAttribute(1) is 1
56 PASS tryCreatingCanvasWithHeight(1) is 1
57 PASS trySettingHeight('+7') is 7
58 PASS trySettingHeightAttribute('+7') is 7
59 PASS tryCreatingCanvasWithHeight('+7') is 7
60 PASS trySettingHeight('-7') is 150
61 PASS trySettingHeightAttribute('-7') is 150
62 PASS tryCreatingCanvasWithHeight('-7') is 150
63 PASS trySettingHeight('123') is 123
64 PASS trySettingHeightAttribute('123') is 123
65 PASS tryCreatingCanvasWithHeight('123') is 123
66 PASS successfullyParsed is true
68 TEST COMPLETE