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