Changeset 123877 in webkit
- Timestamp:
- Jul 27, 2012, 9:22:06 AM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r123872 r123877 1 2012-07-27 Balazs Kelemen <kbalazs@webkit.org> 2 3 [NRWT] should have a way to restrict pixel tests for individual directories 4 https://bugs.webkit.org/show_bug.cgi?id=91754 5 6 Unreviewed attempt to fix the chaos I introduced. 7 8 * DumpRenderTree/qt/DumpRenderTreeQt.cpp: 9 (WebCore::DumpRenderTree::processLine): 10 1 11 2012-07-27 YoungTaeck Song <youngtaeck.song@samsung.com> 2 12 -
trunk/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
r123871 r123877 697 697 // single quote marks the pixel dump hash 698 698 int indexOfFirstSeparator = line.indexOf('\''); 699 int indexOfSecondSeparator = line.indexOf('\'', indexOfFirstSeparator );699 int indexOfSecondSeparator = line.indexOf('\'', indexOfFirstSeparator + 1); 700 700 if (indexOfFirstSeparator > -1) { 701 701 int indexOfPixelHash = indexOfFirstSeparator + 1;
Note:
See TracChangeset
for help on using the changeset viewer.