summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht')
-rw-r--r--testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht b/testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht
new file mode 100644
index 0000000000..04610c2ebb
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/text/text-decoration-070.xht
@@ -0,0 +1,27 @@
+<!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">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <title>CSS Test: 'text-decoration' - 'color' inheritance</title>
+ <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite"/>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#lining-striking-props"/>
+ <meta name="assert" content="The color of 'text-decoration' of ascendant must be applied to descendants even if descendant elements have different 'color' values"/>
+ <style type="text/css">
+ #test{
+ color:lime;
+ font-size:80px;
+ text-decoration:line-through;
+ }
+ span{
+ color:blue;
+ }
+ </style>
+ </head>
+
+ <body>
+ <p>To pass, there <strong>must</strong> be a green line through the text below.</p>
+ <div id="test">
+ <span>text</span>
+ </div>
+ </body>
+</html> \ No newline at end of file