ladybird/Tests/LibWeb/Text/input/Internals/getShadowRoot.html

10 lines
207 B
HTML
Raw Normal View History

<!doctype html>
<script src="../include.js"></script>
<input id="myInput">
<script>
test(() => {
println(myInput.shadowRoot);
println(internals.getShadowRoot(myInput));
});
</script>