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

Side by Side Diff: LayoutTests/fast/transforms/transform-on-inline.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months 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 <style> 3 <style>
4 .transparent { 4 .transparent {
5 opacity: 0.5; 5 opacity: 0.5;
6 } 6 }
7 7
8 .transformed { 8 .transformed {
9 -webkit-transform: rotate(10deg); 9 transform: rotate(10deg);
10 } 10 }
11 </style> 11 </style>
12 </head> 12 </head>
13 <body> 13 <body>
14 14
15 <p>The <span class="transformed">span in this paragraph</span> has a transform, which has no effect on inlines.</p> 15 <p>The <span class="transformed">span in this paragraph</span> has a transform, which has no effect on inlines.</p>
16 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 RenderLayer.</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 RenderLayer.</p>
18 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> 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 20
21 </div> 21 </div>
22 22
OLDNEW
« no previous file with comments | « LayoutTests/fast/transforms/transform-inside-overflow-scroll.html ('k') | LayoutTests/fast/transforms/transform-overflow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698