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

Side by Side Diff: LayoutTests/fast/inline/fixed-pos-with-transform-container-moves-with-abspos-parent.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 #wrap { 5 #wrap {
6 position: absolute; 6 position: absolute;
7 width: 400px; 7 width: 400px;
8 height: 200px; 8 height: 200px;
9 border: 2px solid black; 9 border: 2px solid black;
10 left:0; 10 left:0;
11 top:0; 11 top:0;
12 -webkit-transform: rotate(0); 12 transform: rotate(0);
13 } 13 }
14 14
15 #outer { 15 #outer {
16 position: absolute; 16 position: absolute;
17 width:200px; 17 width:200px;
18 height:200px; 18 height:200px;
19 background-color:grey; left:0; top:0; 19 background-color:grey; left:0; top:0;
20 } 20 }
21 21
22 #inner { 22 #inner {
(...skipping 27 matching lines...) Expand all
50 output.innerHTML = "Success" 50 output.innerHTML = "Success"
51 } 51 }
52 testRunner.notifyDone(); 52 testRunner.notifyDone();
53 } 53 }
54 54
55 document.getElementById('outer').style.left = '200px'; 55 document.getElementById('outer').style.left = '200px';
56 measure(); 56 measure();
57 </script> 57 </script>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698