[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1202-counter-08-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: content: counter(c, upper-roman)</title>
5   <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
6   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter">
7   <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counter-styles">
8   <meta http-equiv="Content-Style-Type" content="text/css"></meta>
9   <style type="text/css">
10
11   body { white-space: nowrap; }
12
13
14   #test { counter-reset: c; }
15   #test span { counter-increment: c; }
16   #test span:before { content: counter(c, upper-roman); }
17
18   </style>
19  </head>
20  <body>
21
22  <p>The following two lines should look the same:</p>
23
24  <div id="test">
25    <span></span>
26    <span></span>
27    <span></span>
28    <span></span>
29    <span></span>
30    <span></span>
31    <span></span>
32    <span></span>
33    <span></span>
34    <span></span>
35    <span></span>
36    <span></span>
37    <span style="counter-reset: c 48"></span>
38    <span></span>
39    <span style="counter-reset: c 388"></span>
40    <span></span>
41    <span style="counter-reset: c 3488"></span>
42    <span></span>
43    <span></span>
44  </div>
45
46  <div>
47    I
48    II
49    III
50    IV
51    V
52    VI
53    VII
54    VIII
55    IX
56    X
57    XI
58    XII
59    XLIX
60    L
61    CCCLXXXIX
62    CCCXC
63    MMMCDLXXXIX
64    MMMCDXC
65    MMMCDXCI
66  </div>
67
68  </body>
69 </html>