[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / box-shadow-override.html
1 <html>
2 <head>
3     <style>
4         input
5         , input::-webkit-search-cancel-button
6         , input::-webkit-search-results-button
7         , input::-webkit-search-decoration
8         , input::-webkit-search-results-decoration
9         , input::-webkit-slider-thumb
10         , input::-webkit-file-upload-button
11         , button
12             { -webkit-box-shadow: red 5px 5px 0; }
13     </style>
14 <head>
15 <body>
16     <p>
17         Tests that box shadow is not applied to Aqua-themed controls.
18     </p>
19     <p>
20         You should not see any red on this page.
21     </p>
22     <div id="a">
23         <input type="search" value="Search">
24     </div>
25     <div id="b">
26         <input type="search" results="0">
27     </div>
28     <div id="c">
29         <input type="search" results="1">
30     </div>
31     <input type="radio">
32     <input type="checkbox">
33     <input type="range">
34     <input type="file" style="-webkit-box-shadow: none;">
35     <input type="button" value="Button" style="font-size: 20px">
36     <input type="button" value="Button">
37     <input type="button" value="Button" style="font-size: 5px">
38     <button style="font-size: 20px;">Button</button>
39 </body>
40 </html>