Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / counter-text-security.html
blob67974db1cd15b4f99f1c102e93d4462e39e27e3b
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <meta http-equiv="Content-Style-Type" content="text/css"></meta>
5 <style type="text/css">
6 body { white-space: nowrap; }
7 div { -webkit-text-security: disc; }
8 #test span:before { counter-reset: c; content: counter(c); }
9 </style>
10 </head>
11 <body>
13 <p>The following two lines should look the same:</p>
15 <div id="test"><span></span></div>
16 <div>I</div>
18 </body>
19 </html>