File: print-manual.html

package info (click to toggle)
thunderbird 1%3A140.5.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 4,609,180 kB
  • sloc: cpp: 7,672,739; javascript: 5,901,898; ansic: 3,898,899; python: 1,413,347; xml: 653,997; asm: 462,284; java: 180,927; sh: 113,491; makefile: 20,463; perl: 14,288; objc: 13,059; yacc: 4,583; pascal: 3,352; lex: 1,720; ruby: 1,222; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (93 lines) | stat: -rw-r--r-- 2,762 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<meta charset=utf-8>
<title>Printing</title>
<link rel=help href="https://html.spec.whatwg.org/#printing">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
setup({explicit_timeout: true})
</script>

<p>Click on the button below.</p>
<p>If the browser offers to print the current page, dismiss the prompt to
return to this page. The following should then appear in the box marked as
"Output":</p>
<pre>
before calling print()
beforeprint
afterprint
after calling print()
</pre>
<p>If no user dialog appears, either the above or the following should be
printed in the box marked as "Output":</p>
<pre>
before calling print()
after calling print()
</pre>
<p>The test passes if the above criteria are satisfied and "PASS" appears in a
table below this paragraph. The test fails otherwise.</p>

<button onclick="testBtn(this)">Click here!</button>
<h3>Output</h3>
<pre id=output></pre>

<script>
"use strict";
// This test is actually synchronous, but we use async_test()'s nice
// infrastructure around t.step() to capture errors in event listeners. This is
// necessary since it seems like in Chrome, exceptions in beforeprint/afterprint
// event listeners are not propagated to error events. See
// https://crbug.com/977828.
const t = async_test();
const log = [];
function out(str) {
  log.push(str);
  output.appendChild(document.createTextNode(str + "\n"));
}
function testBtn(btn) {
  btn.remove();
  window.addEventListener("beforeprint", function (ev) {
    // t.step_func() does not preserve `this`, which we test below.
    t.step(() => {
      out("beforeprint");
      assert_equals(Object.getPrototypeOf(ev), Event.prototype);
      assert_equals(this, window);
      assert_equals(ev.target, window);
      assert_equals(ev.type, "beforeprint");
    });
  });
  window.addEventListener("afterprint", function (ev) {
    // t.step_func() does not preserve `this`, which we test below.
    t.step(() => {
      out("afterprint");
      assert_equals(Object.getPrototypeOf(ev), Event.prototype);
      assert_equals(this, window);
      assert_equals(ev.target, window);
      assert_equals(ev.type, "afterprint");
    });
  });
  out("before calling print()");
  print();
  out("after calling print()");
  t.step(() => {
    try {
      assert_array_equals(log, [
        "before calling print()",
        "beforeprint",
        "afterprint",
        "after calling print()",
      ]);
    } catch (err) {
      try {
        assert_array_equals(log, [
          "before calling print()",
          "after calling print()",
        ]);
      } catch (err) {
        assert_unreached("Output does not match either possibility");
      }
    }
  });
  t.done();
}
</script>