blob: 9935f331c2db248a3fc4505000c59820add81279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-wait">
<script>
let pp;
window.addEventListener("MozReftestInvalidate", finish);
window.addEventListener('load', () => {
pp = SpecialPowers.wrap(self).printPreview();
pp?.print();
});
function finish() {
setTimeout(function() {
pp.close();
document.documentElement.className = "";
}, 0);
}
</script>
</html>
|