• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<body>
2<script>
3window.print();
4
5window.onload = function() {
6    var xhr = new XMLHttpRequest();
7    xhr.open("GET", "print_with_xhr_inflight.html", true);
8    xhr.send();
9}
10</script>
11</body>
12