7 lines
201 B
HTML
7 lines
201 B
HTML
<iframe></iframe>
|
|
<script>
|
|
let frame = document.querySelector("iframe");
|
|
window.xyz = frame.contentWindow.accessibilityController.focusedElement;
|
|
frame.remove();
|
|
window.xyz.activeDescendant;
|
|
</script>
|