summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/domparsing/resources/domparser-iframe.js
blob: a62d2f293b306f2ee47bef8a92e7d73e26089b54 (plain)
1
2
3
4
window.doParse = (html, mimeType) => {
  const parser = new DOMParser();
  return parser.parseFromString(html, mimeType);
};