blob: 6f6b82dab8e6e51517bfe1d3a210c4aabc4243f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html class="reftest-wait">
<style>
:not(option) {
position: absolute;
}
#a {
background: url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=) fixed;
}
fieldset:first-child {
column-width: 0;
filter: invert(3);
}
</style>
<script>
function go() {
a.multiple = true
document.documentElement.classList.remove("reftest-wait");
}
</script>
<body onload=go()>
<fieldset style="scale: 1 9 0.3472">
<select id="a">
</html>
|