After cherry-pick of https://gerrit.wikimedia.org/r/#/c/238082, we ran rt-testing again y'day. It is looking good overall now. No errors in logs (another 30K tests to finish -- the clients needed restarting this morning -- but I don't expect to see any). So, this is almost ready to be enabled in production.
But, since rt-testing doesn't deal with rendering diffs, I used https://github.com/subbuss/parsoid_visual_diffs/blob/master/bin/examples/batching.diffsettings.js and https://github.com/subbuss/parsoid_visual_diffs/blob/master/bin/gendiffs.sh to generate visual diffs on a sample of about 100 random enwiki titles from the rt-testing set. That test yielded one significant visual diff on enwiki:Tijuana_bible.
The height/width parameter on one of the images seems to be different. The bug can be reproduced on this following wikitext from that page
$ echo "[[File:Tjbfullerbrush1.jpg|thumb|380px|right|The first 8-page installment of ''The Adventures of a Fuller Brush Man'', published circa 1936.]]" | node parse --useBatchAPI true ... <img resource="./File:Tjbfullerbrush1.jpg" src="//upload.wikimedia.org/wikipedia/en/8/8c/Tjbfullerbrush1.jpg" data-file-width="225" data-file-height="167" data-file-type="bitmap" height="282" width="380" data-parsoid='{"a":{"resource":"./File:Tjbfullerbrush1.jpg","height":"282","width":"380"},"sa":{"resource":"File:Tjbfullerbrush1.jpg"}}'/> ... $ echo "[[File:Tjbfullerbrush1.jpg|thumb|380px|right|The first 8-page installment of ''The Adventures of a Fuller Brush Man'', published circa 1936.]]" | node parse --useBatchAPI false ... <img resource="./File:Tjbfullerbrush1.jpg" src="//upload.wikimedia.org/wikipedia/en/8/8c/Tjbfullerbrush1.jpg" data-file-width="225" data-file-height="167" data-file-type="bitmap" height="167" width="225" data-parsoid='{"a":{"resource":"./File:Tjbfullerbrush1.jpg","height":"167","width":"225"},"sa":{"resource":"File:Tjbfullerbrush1.jpg"}}'/> ...
Given the 1 in 100 occurrence and given that this is a regression, I think we should fix this before enabling this in production.