mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 15:42:52 +00:00
9 lines
323 B
HTML
9 lines
323 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
var doc = new DOMParser().parseFromString('<!DOCTYPE html PUBLIC "" "this is the system id"><html><div id="test"/></html>', 'application/xhtml+xml');
|
|
if (doc.getElementById('test')) {
|
|
println('PASSED');
|
|
}
|
|
});
|
|
</script>
|