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

Side by Side Diff: LayoutTests/compositing/iframes/connect-compositing-iframe.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 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <script src="../../resources/run-after-display.js"></script> 5 <script src="../../resources/run-after-display.js"></script>
6 <style type="text/css" media="screen"> 6 <style type="text/css" media="screen">
7 iframe { 7 iframe {
8 border: 10px solid black; 8 border: 10px solid black;
9 padding: 5px; 9 padding: 5px;
10 margin: 20px; 10 margin: 20px;
11 height: 150px; 11 height: 150px;
12 width: 300px; 12 width: 300px;
13 -webkit-box-shadow: 0 0 20px black; 13 -webkit-box-shadow: 0 0 20px black;
14 -webkit-transform: translateZ(0); 14 transform: translateZ(0);
15 } 15 }
16 16
17 .overlay { 17 .overlay {
18 position: absolute; 18 position: absolute;
19 width: 50px; 19 width: 50px;
20 height: 50px; 20 height: 50px;
21 top: 5px; 21 top: 5px;
22 left: 5px; 22 left: 5px;
23 background-color: rgba(0, 0, 0, 0.2); 23 background-color: rgba(0, 0, 0, 0.2);
24 } 24 }
(...skipping 23 matching lines...) Expand all
48 48
49 <!-- Test with already-composited iframe, and iframe contents becoming compo sited. --> 49 <!-- Test with already-composited iframe, and iframe contents becoming compo sited. -->
50 <iframe id="parent-iframe" src="resources/enter-compositing-subframe.html">< /iframe> 50 <iframe id="parent-iframe" src="resources/enter-compositing-subframe.html">< /iframe>
51 51
52 <div class="overlay"> 52 <div class="overlay">
53 </div> 53 </div>
54 54
55 <pre id="layers">Layer tree appears here in DRT.</pre> 55 <pre id="layers">Layer tree appears here in DRT.</pre>
56 </body> 56 </body>
57 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698