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

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/transform-positioned-container.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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 <style> 2 <style>
3 #old-container { 3 #old-container {
4 position: relative; 4 position: relative;
5 } 5 }
6 6
7 #positioned-child { 7 #positioned-child {
8 position: absolute; 8 position: absolute;
9 } 9 }
10 10
(...skipping 19 matching lines...) Expand all
30 30
31 var newContainer = document.getElementById("new-container"); 31 var newContainer = document.getElementById("new-container");
32 var descendantNeedingLayout = document.getElementById("descendant-needing-la yout"); 32 var descendantNeedingLayout = document.getElementById("descendant-needing-la yout");
33 33
34 newContainer.style.transform = "translateX(0)"; 34 newContainer.style.transform = "translateX(0)";
35 descendantNeedingLayout.style.display = "block"; 35 descendantNeedingLayout.style.display = "block";
36 } 36 }
37 37
38 runTest(); 38 runTest();
39 </script> 39 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698