Title: [144124] trunk/Source/WebKit/chromium
Revision
144124
Author
[email protected]
Date
2013-02-26 16:44:58 -0800 (Tue, 26 Feb 2013)

Log Message

[chromium] GIFImageDecoderTest.parseAndDecodeByteByByte failing on Android
https://bugs.webkit.org/show_bug.cgi?id=110922

Unreviewed. Build fix.

* tests/GIFImageDecoderTest.cpp:
(WebKit):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (144123 => 144124)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-27 00:42:35 UTC (rev 144123)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-27 00:44:58 UTC (rev 144124)
@@ -1,3 +1,13 @@
+2013-02-26  Alpha Lam  <[email protected]>
+
+        [chromium] GIFImageDecoderTest.parseAndDecodeByteByByte failing on Android
+        https://bugs.webkit.org/show_bug.cgi?id=110922
+
+        Unreviewed. Build fix.
+
+        * tests/GIFImageDecoderTest.cpp:
+        (WebKit):
+
 2013-02-26  James Robinson  <[email protected]>
 
         [chromium] Remove unused WebLayerTreeViewClient calls

Modified: trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp (144123 => 144124)


--- trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp	2013-02-27 00:42:35 UTC (rev 144123)
+++ trunk/Source/WebKit/chromium/tests/GIFImageDecoderTest.cpp	2013-02-27 00:44:58 UTC (rev 144124)
@@ -87,6 +87,8 @@
     EXPECT_EQ(cAnimationLoopInfinite, decoder->repetitionCount());
 }
 
+#if !OS(ANDROID)
+
 TEST(GIFImageDecoderTest, parseAndDecode)
 {
     OwnPtr<GIFImageDecoder> decoder(adoptPtr(new GIFImageDecoder(ImageSource::AlphaNotPremultiplied, ImageSource::GammaAndColorProfileApplied)));
@@ -185,4 +187,6 @@
     EXPECT_EQ(cAnimationLoopOnce, decoder->repetitionCount());
 }
 
+#endif
+
 } // namespace
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to