File: atruletest_result.html

package info (click to toggle)
libcss-inliner-perl 4024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 412 kB
  • sloc: perl: 882; makefile: 2
file content (60 lines) | stat: -rw-r--r-- 1,344 bytes parent folder | download
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
<html>
 <head>
  <style type="text/css">
  @charset "ISO-8859-15";
  @import url("/css/main.css") screen, projection;
  @import "local.css";
  body { 
    color: yellow;
    padding: 100px;
  }
  @font-face {
    font-family: "Lucida";
    src: url("example.com");
  }
  @media print (min-width: 8in), handheld and (orientation: landscape) {
    body {
      color: blue;
      padding: 1in;
    }
    @page :left {
      margin: 1.5in;
    }
  }
  @media not all and (min-width: 700px) and (orientation: landscape) {
    body {
      padding: 20px;
    }
    @font-face {
      font-family: "Bitstream Vera Serif Bold";
      src: url("http://developer.mozilla.org/@api/deki/files/2934/=VeraSeBd.ttf");
    }
  }
  @media screen and (grid) and (max-width: 15em) {
    body {
      padding: 20em;
    }
    @font-face {
      font-family: "Times";
      src: url("source.com");
    }
  }
  @document url(http://www.w3.org/), url-prefix(http://www.w3.org/Style/), domain(mozilla.org), regexp("https:.*") {
    body { 
      color: purple;
      padding: 50px;
    }
    @font-face {
      font-family: "Lucida";
      src: url("example.com");
    }
  }
  @media Braille and (device-aspect-ratio: 16/9) {
    body {
      padding: 1000px;
    }
  } 
</style>
 </head>
 <body style="color: yellow; padding: 100px;"> Test body font </body>
</html>