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

Side by Side Diff: LayoutTests/compositing/video/video-controls-layer-creation-squashing-expected.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> 4 <style>
5 div { 5 div {
6 -webkit-transform:translateZ(0); 6 transform:translateZ(0);
7 position: absolute; 7 position: absolute;
8 top: 100px; 8 top: 100px;
9 left: 0px; 9 left: 0px;
10 width: 300px; 10 width: 300px;
11 height: 300px; 11 height: 300px;
12 background-color: green; 12 background-color: green;
13 z-index: 2; 13 z-index: 2;
14 } 14 }
15 video { 15 video {
16 position: absolute; 16 position: absolute;
(...skipping 23 matching lines...) Expand all
40 <body onload="runTest()"> 40 <body onload="runTest()">
41 <!-- video controls should appear in their own layer --> 41 <!-- video controls should appear in their own layer -->
42 <video controls> 42 <video controls>
43 </video> 43 </video>
44 44
45 <!-- this div is beneath the video in a stacking context and should thro ugh the video into compositing due to overlap --> 45 <!-- this div is beneath the video in a stacking context and should thro ugh the video into compositing due to overlap -->
46 <div></div> 46 <div></div>
47 </body> 47 </body>
48 </html> 48 </html>
49 49
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698