layout/reftests/unicode/unicode-attribute-selector.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/unicode/unicode-attribute-selector.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +<html>
     1.5 +<head>
     1.6 +  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     1.7 +  <title>Unicode tests - attribute selectors</title>
     1.8 +  <style>
     1.9 +    div[dİr] {color: red;}
    1.10 +    div[dİr="ltr"] {text-indent: 30px;}
    1.11 +    input[dİsabled] {display: none;}
    1.12 +    //input[dİsabled="disabled"] {display: inline;}
    1.13 +  </style>
    1.14 +</head>
    1.15 +
    1.16 +<body>
    1.17 +  <div dir='ltr'><p lang="hi">स्टार</p></div>
    1.18 +  <input disabled>
    1.19 +  <input dİsabled="DİSABLED">
    1.20 +  <input dİsabled="disabled">
    1.21 +</body>
    1.22 +</html>

mercurial