Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE HTML>
<input value="test">
<script>
document.domain = "example.org";
onload = function() {
let iframe = document.querySelector("iframe");
let input = document.querySelector("input");
input.selectionStart = input.selectionEnd = 2;
document.body.style.overflow = "scroll";
iframe.contentDocument.body.offsetWidth;
opener.postMessage({start: input.selectionStart,
end: input.selectionEnd}, "*");
}
</script>