mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
10 lines
334 B
HTML
10 lines
334 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
var doc = new DOMParser().parseFromString('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ""><html><div id="test"/></html>', 'application/xhtml+xml');
|
|
if (doc.getElementById('test')) {
|
|
println('PASSED');
|
|
}
|
|
});
|
|
</script>
|