Store WPT-style fuzzy pixel matching data in ImageDiffResult
Created attachment 442542 [details] Patch
Comment on attachment 442542 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=442542&action=review > Tools/Scripts/webkitpy/port/image_diff.py:147 > + m = re.match(b'maxDifference=(\d+); totalPixels=(\d+)', fuzzy_data) I think this should be: m = re.match(br'maxDifference=(\d+); totalPixels=(\d+)', fuzzy_data) which is the source of the style bot failure.
https://trac.webkit.org/changeset/284930/webkit
<rdar://problem/84719334>