Bug 1934520 - [devtools] Avoid errors in document-events webconsole listeners for...
[gecko.git] / layout / reftests / printing / test-async-print.html
blobb2ddec644942ea72d7059d71911c999da31b0af7
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <meta charset="utf-8">
5 <link href="print.css" rel="stylesheet">
6 <script>
7 window.addEventListener("MozReftestInvalidate", function() {
8 document.getElementById("page1").innerText = 'This text should appear on page 1';
9 document.documentElement.className = "";
10 });
11 </script>
12 </head>
13 <body>
14 <p id="page1"></p>
15 </body>
16 </html>