[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / table / table-row-style-not-updated-with-after-content.html
1 <!-- The blue, yellow and green text boxes should not overlap -->\r
2 <html>\r
3 <body style="font: 1em/1 Ahem, sans-serif;">\r
4 <style>    \r
5 #test\r
6 {\r
7     color: blue;\r
8     display: table-row;\r
9 }\r
10 #test::after\r
11 {\r
12     content: "4578";\r
13     color: yellow;\r
14     display: table-row;\r
15 }\r
16 </style>\r
17 <div id="test">\r
18 ABCD\r
19 </div>\r
20 <div style="font-size: 800%; color: green">\r
21 EFGH\r
22 </div>\r
23 <script>\r
24     document.body.offsetTop;\r
25     var test = document.getElementById("test");\r
26     test.style.fontSize = "800%";\r
27 </script>\r
28 </body>\r
29 </html>\r