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

Side by Side Diff: LayoutTests/css3/calc/transforms-translate.html

Issue 217003006: Remove carriage returns from LayoutTests (01) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix caret-and-focus-ring Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <style> 2 <style>
3 div { 3 div {
4 width:100px; 4 width:100px;
5 height:100px; 5 height:100px;
6 margin:50px; 6 margin:50px;
7 background-color:green; 7 background-color:green;
8 } 8 }
9 9
10 #translatex { 10 #translatex {
11 -webkit-transform: translatex(calc(50% + 10px)); 11 -webkit-transform: translatex(calc(50% + 10px));
12 } 12 }
13 #translatey { 13 #translatey {
14 -webkit-transform: translatey(calc(40% - 5px)); 14 -webkit-transform: translatey(calc(40% - 5px));
15 } 15 }
16 #translatez { 16 #translatez {
17 -webkit-transform: perspective(calc(100px * 5)) translatez(calc(10px + 90px) ); 17 -webkit-transform: perspective(calc(100px * 5)) translatez(calc(10px + 90px) );
18 } 18 }
19 </style> 19 </style>
20 <div id="translatex">translate x</div> 20 <div id="translatex">translate x</div>
21 <div id="translatey">translate y</div> 21 <div id="translatey">translate y</div>
22 <div id="translatez">translate z</div> 22 <div id="translatez">translate z</div>
OLDNEW
« no previous file with comments | « LayoutTests/css3/calc/transforms-scale-expected.html ('k') | LayoutTests/css3/calc/transforms-translate-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698