OLD | NEW |
1 CONSOLE WARNING: The provided value '3223' is not a valid enum value of type Ima
geSmoothingQuality. | 1 CONSOLE WARNING: The provided value '3223' is not a valid enum value of type Ima
geSmoothingQuality. |
2 CONSOLE WARNING: The provided value 'bad_input' is not a valid enum value of typ
e ImageSmoothingQuality. | 2 CONSOLE WARNING: The provided value 'bad_input' is not a valid enum value of typ
e ImageSmoothingQuality. |
3 CONSOLE WARNING: The provided value 'LOW' is not a valid enum value of type Imag
eSmoothingQuality. | 3 CONSOLE WARNING: The provided value 'LOW' is not a valid enum value of type Imag
eSmoothingQuality. |
4 CONSOLE WARNING: The provided value 'Medium' is not a valid enum value of type I
mageSmoothingQuality. | 4 CONSOLE WARNING: The provided value 'Medium' is not a valid enum value of type I
mageSmoothingQuality. |
5 Tests for the imageSmoothingQuality attribute. | 5 Tests for the imageSmoothingQuality attribute. |
6 | 6 |
7 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 7 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
8 | 8 |
9 | 9 |
10 On getting, must return the last value it was set to. | 10 On getting, must return the last value it was set to. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 highContext.save(); highContext.imageSmoothingQuality = 'medium'; | 59 highContext.save(); highContext.imageSmoothingQuality = 'medium'; |
60 PASS highContext.imageSmoothingQuality is 'medium' | 60 PASS highContext.imageSmoothingQuality is 'medium' |
61 PASS scaleImageData(highCanvas, highCanvas.imageSmoothingQuality); is mediumData | 61 PASS scaleImageData(highCanvas, highCanvas.imageSmoothingQuality); is mediumData |
62 PASS highContext.restore(); highContext.imageSmoothingQuality is 'high' | 62 PASS highContext.restore(); highContext.imageSmoothingQuality is 'high' |
63 PASS scaleImageData(highCanvas, highCanvas.imageSmoothingQuality); is highData | 63 PASS scaleImageData(highCanvas, highCanvas.imageSmoothingQuality); is highData |
64 | 64 |
65 PASS successfullyParsed is true | 65 PASS successfullyParsed is true |
66 | 66 |
67 TEST COMPLETE | 67 TEST COMPLETE |
68 | 68 |
OLD | NEW |