Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 <!DOCTYPE html>
2 <html lang="dk">
3 <head>
4 <title>testing lang attribute</title>
5 <style>
6 div:lang(fr) {
7 color: green;
8 }
9 input:lang(de) {
10 color: blue;
11 }
12 div:lang(dk) {
13 color: yellow;
14 }
15 </style>
16 </head>
17 <body>
18 <div lang="fr">fr language</div>
19 <div lang="de">
20 <input value="de language">
21 </div>
22 <div>
23 dk language
24 </div>
25 </body>
26 </html>