summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/selectors/lang-inheritance.html
blob: 6571cb53218a47b3dceb756a4bead1f14ca8925c (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
 <title>':lang()': inherit LANG from parent element</title>
 <style>
  p:lang(x) { background: green }
 </style>
 <div lang="x-test">
    <p>This line should have a green background.
    <p lang="y-test">This line should NOT have a green background.
 </div>
</html>