File: dimensions-008-print.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (69 lines) | stat: -rw-r--r-- 2,094 bytes parent folder | download | duplicates (7)
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
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-page-3/#margin-dimension">
<meta name="assert" content="Test auto lengths. Min content sizes are larger than available size. No center/middle boxes.">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<link rel="match" href="dimensions-008-print-ref.html">
<style>
  :root {
    print-color-adjust: exact;
  }
  @page {
    margin: 6em;
    width: 20em;
    height: 16em;
    font: 16px/1 Ahem;
    white-space: pre-wrap;

    /* Total min size is larger than available size. Shrink proportionally to
       min sizes. */

    /* Left margin box min: 18em
       Right margin box min: 6em
       Flex will be the same as min. Total flex: 18+6=24

       Available space: 20em
       Unused space: 20em - 24em = -4em

       Left width: 18em + (-4em) * 18/24 = 15em
       Right width: 6em + (-4em) * 6/24 = 5em */
    @top-left {
      text-align: left;
      vertical-align: top;
      content: "xxxxxxxxxxxxxxxxxx x";
      margin-bottom: 3em;
      background: hotpink;
    }
    @top-right {
      text-align: left;
      vertical-align: top;
      margin-top: 3em;
      content: "xxxxxx xxx";
      background: yellow;
    }

    /* Top margin box min: 18em (18 lines)
       Bottom margin box min: 30em (30 lines)
       Flex will be the same as min. Total flex: 18+30=48

       Available space: 16em
       Unused space: 16em - 48em = -32em

       Top height: 18em + (-32em) * 18/48 = 6em
       Bottom height: 30em + (-32em) * 30/48 = 10em */
    @left-top {
      text-align: left;
      vertical-align: top;
      margin-right: 3em;
      content: "x\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\a";
      background: hotpink;
    }
    @left-bottom {
      text-align: left;
      vertical-align: top;
      margin-left: 3em;
      content: "x\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\ax\a";
      background: yellow;
    }
</style>