OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "core/platform/graphics/chromium/TransparencyWin.h" | 32 #include "core/platform/graphics/chromium/TransparencyWin.h" |
33 | 33 |
34 #include "core/platform/graphics/GraphicsContext.h" | 34 #include "core/platform/graphics/GraphicsContext.h" |
35 #include "core/platform/graphics/ImageBuffer.h" | 35 #include "core/platform/graphics/ImageBuffer.h" |
36 #include "core/platform/graphics/transforms/AffineTransform.h" | 36 #include "platform/transforms/AffineTransform.h" |
37 #include "skia/ext/platform_canvas.h" | 37 #include "skia/ext/platform_canvas.h" |
38 | 38 |
39 #include <windows.h> | 39 #include <windows.h> |
40 #include <gtest/gtest.h> | 40 #include <gtest/gtest.h> |
41 | 41 |
42 namespace WebCore { | 42 namespace WebCore { |
43 | 43 |
44 static FloatRect RECTToFloatRect(const RECT* rect) | 44 static FloatRect RECTToFloatRect(const RECT* rect) |
45 { | 45 { |
46 return FloatRect(static_cast<float>(rect->left), | 46 return FloatRect(static_cast<float>(rect->left), |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 1, 0)); | 741 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 1, 0)); |
742 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 2, 0)); | 742 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 2, 0)); |
743 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 3, 0)); | 743 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 3, 0)); |
744 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 4, 0)); | 744 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 4, 0)); |
745 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 5, 0)); | 745 EXPECT_EQ(oneThirdResult, getPixelAt(src->context(), 5, 0)); |
746 EXPECT_EQ(fullResult, getPixelAt(src->context(), 6, 0)); | 746 EXPECT_EQ(fullResult, getPixelAt(src->context(), 6, 0)); |
747 EXPECT_EQ(Color::transparent, getPixelAt(src->context(), 7, 0)); | 747 EXPECT_EQ(Color::transparent, getPixelAt(src->context(), 7, 0)); |
748 } | 748 } |
749 | 749 |
750 } // namespace WebCore | 750 } // namespace WebCore |
OLD | NEW |