File: mq_print_maxheight_updown.xhtml

package info (click to toggle)
thunderbird 1%3A60.9.0-1~deb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,339,424 kB
  • sloc: cpp: 5,457,040; ansic: 2,360,385; python: 596,167; asm: 340,963; java: 326,296; xml: 258,830; sh: 84,445; makefile: 23,701; perl: 17,317; objc: 3,768; yacc: 1,766; ada: 1,681; lex: 1,364; pascal: 1,264; cs: 879; exp: 527; php: 436; lisp: 258; ruby: 153; awk: 152; sed: 53; csh: 27
file content (60 lines) | stat: -rw-r--r-- 1,939 bytes parent folder | download | duplicates (32)
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
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-paged">
<head>
  <title>Media Query - Print mode test - max-height</title>
  <style type="text/css"><![CDATA[
    p {height: 10px; width: 100px; color: yellow; }
    @media print { .a { color: aqua; } }
    @media screen { .b { color: aqua; } }

    /* we set the height to 3 inches/216pt/76mm in the reftest-paged class*/
    /* test values greater than */
    @media (max-height: 11in) { .c { color: aqua; } }    /* y */
    @media (max-height: 1100pt) { .d { color: aqua; } }  /* y */ 
    @media (max-height: 110mm) { .e { color: aqua; } }  /* y */

    @media print and (max-height: 11in) { .f {color: aqua; } }  /* y */ 
    @media print and (max-height: 1100pt) { .g {color: aqua; } }/* y */
    @media print and (max-height: 110mm) { .h {color: aqua; } }/* y */

    @media all and (max-height: 11in) { .i { color: aqua; } } /* y */


    /* test values less than */
    @media (max-height: 1in) { .j { color: aqua; } }    /* n */
    @media (max-height: 100pt) { .k { color: aqua; } }  /* n */ 
    @media (max-height: 10mm) { .l { color: aqua; } }  /* n */

    @media print and (max-height: 1in) { .m {color: aqua; } }  /* n */ 
    @media print and (max-height: 100pt) { .n {color: aqua; } }/* n */
    @media print and (max-height: 10mm) { .o {color: aqua; } }/* n */

    @media all and (max-height: 1in) { .p { color: aqua; } } /* n */



  ]]></style>
</head>

<body>
  <p class="a">a</p>
  <p class="b">b</p>

  <p class="c">c</p>
  <p class="d">d</p>
  <p class="e">e</p>
  <p class="f">f</p>
  <p class="g">g</p>
  <p class="h">h</p>
  <p class="i">i</p>

  <p class="j">j</p>
  <p class="k">k</p>
  <p class="l">l</p>
  <p class="m">m</p>
  <p class="n">n</p>
  <p class="o">o</p>
  <p class="p">p</p>
</body>
</html>