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

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

Powered by Google App Engine
This is Rietveld 408576698