Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: LayoutTests/css3/filters/huge-region-composited.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW
« no previous file with comments | « LayoutTests/css3/filters/filtered-compositing-descendant.html ('k') | LayoutTests/css3/filters/nested-filter.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698