Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / transforms / transform-on-inline.html
blob5aa1b9bfb73c3e4a2c5a99701e05ea42239127c9
1 <html>
2 <head>
3 <style>
4 .transparent {
5 opacity: 0.5;
8 .transformed {
9 transform: rotate(10deg);
11 </style>
12 </head>
13 <body>
15 <p>The <span class="transformed">span in this paragraph</span> has a transform, which has no effect on inlines.</p>
17 <p>The <span class="transparent transformed">span in this paragraph</span> has a transform, which has no effect on inlines. It also has opacity to throw it into a Layer.</p>
19 <p>The <span class="transparent transformed" style="display: inline-block;">span in this paragraph</span> has a transform and opacity, and is an inline-block. So it should respect the transform.</p>
21 </div>