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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/transforms/transform-on-inline.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 <style>
4 .transparent {
5 opacity: 0.5;
6 }
7
8 .transformed {
9 transform: rotate(10deg);
10 }
11 </style>
12 </head>
13 <body>
14
15 <p>The <span class="transformed">span in this paragraph</span> has a transform, which has no effect on inlines.</p>
16
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>
18
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. S o it should respect the transform.</p>
20
21 </div>
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698