Create a page with the following wikitext:
[[Image:VisualEditor-logo.svg|thumb|Test <span style="background:red">store</span>]]
In VE, edit the caption to make 'Test' bold. Observe that your wikitext is now:
[[Image:VisualEditor-logo.svg|thumb|<b style="background:red">Test</b> <span style="background:red">store</span>]]
This is because renderHtmlAttributeList is using deep mode for handlesOwnChildren nodes (such as mw block images), and so is instructed to restore the attributes of originalElement.children[0] (the <span>) to targetElement.children[0] (the <b>).