blob: 0d3ecb98c1f5583d93f0c0894f3c5bcad7b92d8b [file] [log] [blame]
<!doctype html>
<html>
<script>
let firedBeforePrint = false;
let firedAfterPrint = false;
window.addEventListener('beforeprint', function (_) {
firedBeforePrint = true;
});
window.addEventListener('afterprint', function (_) {
firedAfterPrint = true;
});
</script>
</html>