⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 90606 in webkit


Ignore:
Timestamp:
Jul 7, 2011, 7:13:05 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

[ImageDiff] Calculate/print difference right after reading baseline image.
https://bugs.webkit.org/show_bug.cgi?id=64117

Patch by Leandro Pereira <leandro@profusion.mobi> on 2011-07-07
Reviewed by Kent Tamura.

Otherwise, ImageDiff will block on fgets() until the universe ends or you C
it. Whichever happens first.

  • DumpRenderTree/efl/ImageDiff.cpp:

(main):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r90605 r90606  
     12011-07-07  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        [ImageDiff] Calculate/print difference right after reading baseline image.
     4        https://bugs.webkit.org/show_bug.cgi?id=64117
     5
     6        Reviewed by Kent Tamura.
     7
     8        Otherwise, ImageDiff will block on fgets() until the universe ends or you ^C
     9        it.  Whichever happens first.
     10
     11        * DumpRenderTree/efl/ImageDiff.cpp:
     12        (main):
     13
    1142011-07-07  Raphael Kubo da Costa  <kubo@profusion.mobi>
    215
  • trunk/Tools/DumpRenderTree/efl/ImageDiff.cpp

    r89175 r90606  
    331331            if (!actualImage)
    332332                actualImage = readImageFromStdin(evas, imageSize);
    333             else if (!baselineImage)
     333            else if (!baselineImage) {
    334334                baselineImage = readImageFromStdin(evas, imageSize);
    335             else {
     335
    336336                printImageDifferences(baselineImage.get(), actualImage.get());
    337337
Note: See TracChangeset for help on using the changeset viewer.