summaryrefslogtreecommitdiffstats
path: root/toolkit/components/printing/tests/file_window_print_reentrant.html
blob: 2008ffaf2714d8991612b68f9bd5a4e7a347a07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<div id="before-print-count"></div>
<script>
let count = 0;
onload = function() {
  window.addEventListener('beforeprint', () => {
    document.getElementById("before-print-count").innerText = ++count;
    print()
  });
  print()
};
</script>