[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / tables / table-section-overflow-clip-crash.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #test0 {
6     counter-reset: c;
7 }
8 #test0::after {
9     content: counter(c);
10     counter-reset: c;
11 }
12 #test1::after {
13     content: counter(c);
14     counter-reset: c;
15 }
16 #test2 {
17     counter-reset: c;
18     height: 1px;
19     width: 1px;
20     overflow-x: scroll;
21     -webkit-perspective: 1;
22 }
23 #test3 {
24     content: counter(c);
25     -webkit-animation-name: a;
26     -webkit-animation-duration: 0.01s;
27 }
28 </style>
29 <script>
30 if (window.layoutTestController) {
31     layoutTestController.dumpAsText();
32     layoutTestController.waitUntilDone();
33 }
34
35 function finish() {
36     document.body.innerHTML = "WebKit Bug 87445 - RenderTableSection::paintCell.<br/>Test passes if it does not crash.";
37     if (window.layoutTestController)
38         layoutTestController.notifyDone();
39 }
40
41 onload = function() {
42     test0 = document.createElement('div');
43     test0.setAttribute('id', 'test0');
44     document.body.appendChild(test0);
45     test1 = document.createElement('div');
46     test1.setAttribute('id', 'test1');
47     test0.appendChild(test1);
48     test2 = document.createElement('div');
49     test2.setAttribute('id', 'test2');
50     test1.appendChild(test2);
51     test3 = document.createElement('div');
52     test3.setAttribute('id', 'test3');
53     test2.appendChild(test3);
54     test2.style.display = 'table-footer-group';
55     document.body.offsetTop;
56     setTimeout("finish()", 10);
57 }
58 </script>
59 </head>
60 <body>
61 </body>
62 </html>