Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: tsan || (os == 'android')
- Manifest: dom/base/crashtests/crashtests.list
<!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>