Merge "[WK2] Revert patch / set a limit of layer count and atlas size." into 2.0_beta
[framework/web/webkit-efl.git] / ManualTests / filters / opacity-above-filter.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5   <style>
6     
7     .container {
8       opacity: 0.8;
9       margin: 10px;
10     }
11     
12     .filtered {
13       width: 100px;
14       height: 100px;
15       background-color: blue;
16       -webkit-filter: blur(10px);
17     }
18   </style>
19 </head>
20 <body>
21   <a href="https://bugs.webkit.org/show_bug.cgi?id=76329">https://bugs.webkit.org/show_bug.cgi?id=76329</a>
22   <p>Open this test in Safari, and hit Command-F to Find. A debug build should not assert.</p>
23   <div class="container">
24       <div class="filtered box"></div>
25   </div>
26 </body>
27 </html>