17 lines
385 B
HTML
17 lines
385 B
HTML
<!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>
|