blob: 1166a119642e483e3214f0b97cfc2f3a40486dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!doctype html>
<style>
:indeterminate { color: red; }
</style>
<div id="container">
<fieldset>
<label>
<input name="layout" type="radio">Foo
</label>
<label>
<input name="layout" type="radio">Bar
</label>
<label>
<input name="layout" type="radio">Baz
</label>
<label>
<input name="layout" type="radio">Buz
</label>
</fieldset>
</div>
<script>
container.querySelector('input').checked = true;
document.body.offsetTop;
container.remove();
document.body.offsetTop;
</script>
|