blob: 3d6634e952293ad12a7645722d1e1c6b42149050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<script>
window.onload = () => {
window.requestIdleCallback(() => {
let pp = SpecialPowers.wrap(self).printPreview()
setTimeout(() => {
try { pp.close(); } catch (e) { }
document.documentElement.classList.remove("reftest-wait");
}, 250)
})
}
</script>
<select autofocus='true'>
|