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

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/container-transform-crash.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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 </script> 6 </script>
7 <style> 7 <style>
8 .container { 8 .container {
9 position: relative; 9 position: relative;
10 height: 350px; 10 height: 350px;
11 width: 400px; 11 width: 400px;
12 border: 1px solid black; 12 border: 1px solid black;
13 margin: 10px; 13 margin: 10px;
14 } 14 }
15 15
16 .container > a { 16 .container > a {
17 transform: rotate(20deg); 17 transform: rotate(20deg);
18 } 18 }
19 </style> 19 </style>
20 </head> 20 </head>
21 <body> 21 <body>
22 Inline with -webkit-transform that contains positioned element. This should not crash. 22 Inline with -webkit-transform that contains positioned element. This should not crash.
23 <div class="container"> 23 <div class="container">
24 <a href="#"> 24 <a href="#">
25 <div style="height: 150px; top: 100px; width: 160px; background-colo r: grey; position: absolute; left: 134px;"><p>some text here</p></div> 25 <div style="height: 150px; top: 100px; width: 160px; background-colo r: grey; position: absolute; left: 134px;"><p>some text here</p></div>
26 </a> 26 </a>
27 </div> 27 </div>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698