mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 04:39:03 +02:00
Depends on D156683 Differential Revision: https://phabricator.services.mozilla.com/D156684
12 lines
264 B
HTML
12 lines
264 B
HTML
<!doctype html>
|
|
<div id="before-print-count"></div>
|
|
<script>
|
|
let count = 0;
|
|
onload = function() {
|
|
window.addEventListener('beforeprint', (event) => {
|
|
document.getElementById("before-print-count").innerText = ++count;
|
|
print()
|
|
});
|
|
print()
|
|
};
|
|
</script>
|