[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / animations / resources / stop-animation-on-suspend-subframe.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5   <style type="text/css" media="screen">
6     body { background-color:silver }
7     
8     .box {
9         height: 100px;
10         width: 100px;
11         margin: 35px;
12         background-color: blue;
13         overflow:hidden;
14         -webkit-animation: move 400ms alternate infinite linear;
15     }
16
17     @-webkit-keyframes move {
18         from { -webkit-transform: translate3d(0px, 0px, 0px); }
19         to   { -webkit-transform: translate3d(400px, 0px, 0px); }
20     }
21   </style>
22 </head>
23 <body>
24
25     <div id="subframe-box" class="box">
26     </div>
27     <div id="result"></div>
28
29 </body>
30 </html>