diff options
author | darin <darin@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2003-07-31 00:18:03 +0000 |
---|---|---|
committer | darin <darin@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2003-07-31 00:18:03 +0000 |
commit | 79561979b984cd8ab9efb2ef47091d00451ceddb (patch) | |
tree | 664169507f32abbb269acbfa76c2a9b08097fd83 /third_party/WebKit/LayoutTests/fast/selectors/043b.html | |
parent | 0257162719cacdee2ea1b9f5a0dc7a0163930c83 (diff) | |
download | chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.zip chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.tar.gz chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.tar.bz2 |
Moving layout tests in here.
git-svn-id: svn://svn.chromium.org/blink/trunk@4740 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/selectors/043b.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/selectors/043b.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/selectors/043b.html b/third_party/WebKit/LayoutTests/fast/selectors/043b.html new file mode 100644 index 0000000..f20e9e6 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/selectors/043b.html @@ -0,0 +1,38 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> +<html> + <head> + <title>Descendant combinator</title> + <style type="text/css">.white { background-color: transparent ! important; } +.green { background-color: lime; } +div.t1 p { background-color: red; }</style> + <link rel="first" href="css3-modsel-1.html" title="Groups of selectors"> + <link rel="prev" href="css3-modsel-43.html" title="Descendant combinator"> + <link rel="next" href="css3-modsel-44.html" title="Child combinator"> + <link rel="last" href="css3-modsel-d5e.html" title="NEGATED :indeterminate with :checked"> + <link rel="up" href="./index.html"> + <link rel="top" href="../../index.html"> + </head> + <body> + <div class="t1"> + <p class="white">This paragraph should be unstyled</p> + <table> + <tbody> + <tr> + <td> + <p class="white">This paragraph should be unstyled</p> + </td> + </tr> + </tbody> + </table> + </div> + <table> + <tbody> + <tr> + <td> + <p class="green">This paragraph should have a green background</p> + </td> + </tr> + </tbody> + </table> +</body> +</html>
\ No newline at end of file |