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

Side by Side Diff: LayoutTests/compositing/culling/clear-fixed-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 <html><head><title>Compositor Iframe Sadface</title> 2 <html><head><title>Compositor Iframe Sadface</title>
3 <style> 3 <style>
4 body { margin: 0; padding: 0; } 4 body { margin: 0; padding: 0; }
5 .composited { 5 .composited {
6 -webkit-transform: translateZ(0); 6 transform: translateZ(0);
7 background-color: green; 7 background-color: green;
8 position:fixed; 8 position:fixed;
9 left:0; top:0; right:0; bottom:0; 9 left:0; top:0; right:0; bottom:0;
10 } 10 }
11 iframe { 11 iframe {
12 position:fixed; 12 position:fixed;
13 left: 0; top: 0; 13 left: 0; top: 0;
14 width:100%; 14 width:100%;
15 height: 100%; 15 height: 100%;
16 border:0; 16 border:0;
(...skipping 10 matching lines...) Expand all
27 <div class="composited"></div> 27 <div class="composited"></div>
28 28
29 <!-- You should see a light green box filling the top/left of the window, inside a darker green background. 29 <!-- You should see a light green box filling the top/left of the window, inside a darker green background.
30 If the "glass" in the iframe is considered opaque, then drawing errors will occur and tiles become black 30 If the "glass" in the iframe is considered opaque, then drawing errors will occur and tiles become black
31 (light gray with the glass). 31 (light gray with the glass).
32 --> 32 -->
33 <iframe src="resources/clear-fixed-iframe-content.html" frameborder="0"></iframe > 33 <iframe src="resources/clear-fixed-iframe-content.html" frameborder="0"></iframe >
34 </body> 34 </body>
35 35
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698