summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1697262-1.html
blob: 784ebd18c7bff0a4c424062284b658e7696e35da (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
27
28
29
<html class="reftest-wait">
<script>
let pp;
window.addEventListener("MozReftestInvalidate", finish);
window.onload = () => {
  try { document.getElementById('a').setAttribute('style', 'left:76%') } catch (e) {}
  pp = SpecialPowers.wrap(self).printPreview();
  pp?.print()
  setTimeout(window.close, 250)
}
function finish() {
  setTimeout(function() {
    pp.close();
    document.documentElement.className = "";
  }, 400);
}

</script>
<style>
:last-of-type {
  position: relative;
}
</style>
<select>
<optgroup label='y'>
<option>
</select>
<video id='a'>
</html>