summaryrefslogtreecommitdiffstats
path: root/toolkit/components/printing/tests/file_window_print_sandboxed_iframe.html
blob: a8e832932c50d57f2e1759fb02fd23e7671a06c6 (plain)
1
2
3
4
5
6
7
<!doctype html>
<iframe sandbox="allow-same-origin allow-scripts allow-modals" src="about:blank" width="0" height="0"></iframe>
<script>
  onload = function() {
    document.querySelector("iframe").contentWindow.print();
  };
</script>