mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-01-26 23:38:49 -05:00
9 lines
304 B
HTML
9 lines
304 B
HTML
<!DOCTYPE html>
|
|
<script src="testing.js"></script>
|
|
<p id="para"> And</p>
|
|
<script id=xmlserializer>
|
|
const s = new XMLSerializer();
|
|
testing.expectEqual('<p id="para"> And</p>', s.serializeToString($('#para')));
|
|
testing.expectEqual('<!DOCTYPE html>', s.serializeToString(document.doctype));
|
|
</script>
|