[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / css-generated-content / 009.html
1 <html>
2 <head>
3 <style>
4 .one { color: black }
5 .one::first-line { color:green }
6
7 ul::first-line { color:green }
8
9 .three::first-letter { font-size:300%; }
10 .three { color: red; }
11 .three > span { color: green; }
12
13 .four { display: inline-block; color: red; }
14 .four::first-line { color:green; }
15 </style>
16 </head>
17 <body>
18 <p class="one">All of this <span>text should be</span> green.</p>
19
20 <ul><li>All of this text should be green. The bullet should be black.</li></ul>
21
22 <div class="three"><span>All of this text should be green, including the big "A" first-letter.</span></div>
23
24 <p></p>
25
26 <div><div class="four">This text should be green.</div></div>