summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht
blob: 1db33aaf56f8b5f26196307fd0657be350efa7c7 (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 inline children</title>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/text/decoration/007.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: orange; text-decoration: underline; }
   span { vertical-align: bottom; color: gray; }
   .inline-block { display: inline-block; width: 5em; border: dotted blue; margin: 0.5em 0; }
  </style>
 </head>
 <body>
  <p>There should be a single orange line below, underneath the words
  <em>LINE A</em> and <em>LINE B</em> that disappears within the dotted blue box.
  If there are any lines under, inside, above, or on the blue box, then the
  test has failed.</p>
  <div>
   <span>LINE A</span>
   <span class="inline-block">CLEAR CLEAR CLEAR</span>
   <span>LINE B</span>
  </div>
 </body>
</html>