File: abspos-inline-003.html

package info (click to toggle)
php-dompdf 3.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,848 kB
  • sloc: php: 26,450; sh: 109; xml: 100; makefile: 42
file content (26 lines) | stat: -rw-r--r-- 1,330 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
 <head>
  <title>CSS Test: Absolutely positioned boxes in inlines: positioning at top left</title>
  <meta name="description" content="Adapted from the CSS2.1 Conformance Test Suite for dompdf">
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
  <link rel="alternate" href="http://test.csswg.org/suites/css21_dev/20110323/html4/abspos-inline-003.htm" type="text/html">
  <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/absolute/inline/003.html" type="text/html">
  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#comp-abspos">
  <style type="text/css">
   @page { size: 400pt 300pt; }
   p { font: 1em monospace; }
   .filler { color: silver; }
   .absolute { color: white; background: green; position: absolute; top: 0; left: 0; }
   .fail { color: yellow; background: red; }
   .test { position: relative; }
  </style>
 </head>
 <body>
  <p>
   <span class="filler">This is filler text. This is filler text. This is filler text.</span>
   The test has <span class="test"><span class="absolute">PASSED</span><span class="fail">FAILED</span></span>.
   <span class="filler">This is filler text. This is filler text. This is filler text.</span>
  </p>
 </body>
</html>