Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / css3 / filters / huge-region-composited.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <style type="text/css">
5     .big {
6       width: 50px;
7       height: 50px;
8       padding-bottom: 65536%;
9       -webkit-filter: blur(2147483648px);
10       transform: translate3d(0, 0, 0);
11           }
12   </style>
13   <script>
14     if (window.testRunner)
15       testRunner.dumpAsText();
16   </script>
17 </head>
18 <body>
19   <div class="big">This element is too big to filter.</div>
20 </body>
21 </html>