mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
473351faa5
--HG-- rename : layout/reftests/editor/selection_visibility_after_reframe.html => layout/reftests/editor/selection_visibility_after_reframe-3.html
16 lines
330 B
HTML
16 lines
330 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<input value="foo">
|
|
<script>
|
|
var i = document.querySelector("input");
|
|
i.selectionStart = 1;
|
|
i.selectionEnd = 2;
|
|
document.body.clientHeight;
|
|
i.style.display = "none";
|
|
document.body.clientHeight;
|
|
i.style.display = "";
|
|
</script>
|
|
</body>
|
|
</html>
|