| Index: third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
|
| index 26567a28e2ae75c48ede0b2f5e0c4f7daac7909f..a38dfd5f6cbf97af42bed22dcc2b3e3b55e04b7c 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/ico/ICOImageDecoderTest.cpp
|
| @@ -22,20 +22,19 @@ std::unique_ptr<ImageDecoder> createDecoder() {
|
|
|
| TEST(ICOImageDecoderTests, parseAndDecodeByteByByte) {
|
| testByteByByteDecode(&createDecoder,
|
| - "/LayoutTests/fast/images/resources/2entries.ico", 2u,
|
| + "/LayoutTests/images/resources/2entries.ico", 2u,
|
| + cAnimationNone);
|
| + testByteByByteDecode(&createDecoder,
|
| + "/LayoutTests/images/resources/greenbox-3frames.cur", 3u,
|
| cAnimationNone);
|
| - testByteByByteDecode(
|
| - &createDecoder, "/LayoutTests/fast/images/resources/greenbox-3frames.cur",
|
| - 3u, cAnimationNone);
|
| testByteByByteDecode(
|
| &createDecoder,
|
| - "/LayoutTests/fast/images/resources/icon-without-and-bitmap.ico", 1u,
|
| + "/LayoutTests/images/resources/icon-without-and-bitmap.ico", 1u,
|
| cAnimationNone);
|
| + testByteByByteDecode(&createDecoder, "/LayoutTests/images/resources/1bit.ico",
|
| + 1u, cAnimationNone);
|
| testByteByByteDecode(&createDecoder,
|
| - "/LayoutTests/fast/images/resources/1bit.ico", 1u,
|
| - cAnimationNone);
|
| - testByteByByteDecode(&createDecoder,
|
| - "/LayoutTests/fast/images/resources/bug653075.ico", 2u,
|
| + "/LayoutTests/images/resources/bug653075.ico", 2u,
|
| cAnimationNone);
|
| }
|
|
|
|
|