Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / canvas / canvas-imageSmoothingEnabled-expected.txt
blob41dda69dd1426a370d4e041d2d5c465974337741
1 CONSOLE WARNING: 'CanvasRenderingContext2D.webkitImageSmoothingEnabled' is deprecated. Please use 'CanvasRenderingContext2D.imageSmoothingEnabled' instead.
2 Tests for the imageSmoothingEnabled attribute.
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
7 Test that the default value is true.
8 PASS ctx.imageSmoothingEnabled is true
9 PASS ctx.webkitImageSmoothingEnabled is true
10 Test that false is returned after a the attribute is set to false.
11 PASS ctx.imageSmoothingEnabled is false
12 PASS ctx.webkitImageSmoothingEnabled is false
13 Test that restore works. We save a false state; create, then save a true state; and then finally restore.
14 PASS ctx.imageSmoothingEnabled is false
15 New canvas element created.
16 Test that the image is smoothed by default. We check by making sure the pixel just to the left of the middle line is not completely black.
17 PASS left_of_center_pixel.data[0] !== 0 is true
18 PASS left_of_center_pixel.data[1] !== 0 is true
19 PASS left_of_center_pixel.data[2] !== 0 is true
20 Test that nearest neighbour is used when imageSmoothingEnabled is set to false. We check this by making sure the pixel just to the left of the middle line is completely black.
21 PASS left_of_center_pixel.data[0] is 0
22 PASS left_of_center_pixel.data[1] is 0
23 PASS left_of_center_pixel.data[2] is 0
24 Test that the image is smoothed when imageSmoothingEnabled is set to true.
25 PASS left_of_center_pixel.data[0] !== 0 is true
26 PASS left_of_center_pixel.data[1] !== 0 is true
27 PASS left_of_center_pixel.data[2] !== 0 is true
28 Test that restoring actually changes smoothing and not just the attribute value. We are restoring to a point where imageSmoothingEnabled is set to false.
29 PASS left_of_center_pixel.data[0] is 0
30 PASS left_of_center_pixel.data[1] is 0
31 PASS left_of_center_pixel.data[2] is 0
32 PASS successfullyParsed is true
34 TEST COMPLETE