1
0
Fork 0
firefox/testing/web-platform/tests/domparsing/resources/domparser-iframe.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

4 lines
125 B
JavaScript

window.doParse = (html, mimeType) => {
const parser = new DOMParser();
return parser.parseFromString(html, mimeType);
};