in spec/frontend/html_string_serializer.js [11:17]
export function serialize(received, config, indentation, depth, refs, printer) {
const parser = new DOMParser();
const doc = parser.parseFromString(received, 'text/html');
const el = doc.body.firstElementChild;
return printer(el, config, indentation, depth, refs);
}