summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht b/testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht
new file mode 100644
index 0000000000..1db33aaf56
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/text/text-decoration-089.xht
@@ -0,0 +1,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>