OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css"> | 4 <style type="text/css"> |
5 .big { | 5 .big { |
6 width: 50px; | 6 width: 50px; |
7 height: 50px; | 7 height: 50px; |
8 padding-bottom: 65536%; | 8 padding-bottom: 65536%; |
9 -webkit-filter: blur(2147483648px); | 9 -webkit-filter: blur(2147483648px); |
10 -webkit-transform: translate3d(0, 0, 0); | 10 transform: translate3d(0, 0, 0); |
11 } | 11 } |
12 </style> | 12 </style> |
13 <script> | 13 <script> |
14 if (window.testRunner) | 14 if (window.testRunner) |
15 testRunner.dumpAsText(); | 15 testRunner.dumpAsText(); |
16 </script> | 16 </script> |
17 </head> | 17 </head> |
18 <body> | 18 <body> |
19 <div class="big">This element is too big to filter.</div> | 19 <div class="big">This element is too big to filter.</div> |
20 </body> | 20 </body> |
21 </html> | 21 </html> |
OLD | NEW |