Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<style>
select {
unicode-bidi: bidi-override;
}
</style>
<body>
<select>
<option>Test1</option>
<option id="opt" hidden="hidden">Test2</option>
</select>
</body>
<script>
document.body.offsetTop;
opt.defaultSelected = true;
window.getSelection().selectAllChildren(document.body);
document.vlinkColor = "red";
</script>