summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/text/text-decoration-085.xht
blob: 93ce0610e6d7b13af69d521f98b973e9e10ac4a0 (plain)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
 <head>
  <title>CSS Test: text-decoration with block children</title>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact" />
  <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/text/decoration/005.html" type="text/html"/>
  <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#lining-striking-props" />
  <style type="text/css">
   div { color: blue; text-decoration: underline; position: relative; }
   .block { display: block; }
   .float { float: right; }
   .pos { position: absolute; top: 4em; right: 0; }
  </style>
 </head>
 <body>
  <div>
   <span class="test"> This text should be underlined.
    <span class="block"> This text should be underlined. </span>
    <span class="float"> This text should NOT be underlined. </span>
    <span class="pos"> This text should NOT be underlined. </span>
   </span>
  </div>
 </body>
</html>