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

Side by Side Diff: LayoutTests/compositing/culling/filter-occlusion-blur.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><head> 2 <html><head>
3 <title>CSS filter blur occlusion test.</title> 3 <title>CSS filter blur occlusion test.</title>
4 <style type="text/css"> 4 <style type="text/css">
5 .composited { 5 .composited {
6 -webkit-transform: translateZ(0); 6 transform: translateZ(0);
7 } 7 }
8 .yellow-parent { 8 .yellow-parent {
9 width: 600px; 9 width: 600px;
10 height: 600px; 10 height: 600px;
11 -webkit-filter: blur(10px); 11 -webkit-filter: blur(10px);
12 } 12 }
13 .centered { 13 .centered {
14 width: 200px; 14 width: 200px;
15 height: 200px; 15 height: 200px;
16 position: absolute; 16 position: absolute;
(...skipping 13 matching lines...) Expand all
30 it becomes visible around the outside of the green box. 30 it becomes visible around the outside of the green box.
31 --> 31 -->
32 <div class="yellow-parent composited" style="position:absolute; left:0; top:0"> 32 <div class="yellow-parent composited" style="position:absolute; left:0; top:0">
33 <div class="centered composited" style="background-color: yellow;"> 33 <div class="centered composited" style="background-color: yellow;">
34 </div> 34 </div>
35 </div> 35 </div>
36 <div class="composited centered" style="background-color: green;"> 36 <div class="composited centered" style="background-color: green;">
37 </div> 37 </div>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698