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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/motion-path/path-establishes-stacking-context.html

Issue 2461603003: CSS Motion Path: Place offset-anchor on the path (Closed)
Patch Set: anchor Created 4 years, 1 month 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 5
6 div { 6 div {
7 width: 800px; 7 width: 800px;
8 height: 300px; 8 height: 300px;
9 } 9 }
10 10
(...skipping 19 matching lines...) Expand all
30 background: green; 30 background: green;
31 } 31 }
32 32
33 #span3 { 33 #span3 {
34 left: 150px; 34 left: 150px;
35 top: 150px; 35 top: 150px;
36 background: blue; 36 background: blue;
37 } 37 }
38 38
39 #div1 { 39 #div1 {
40 offset-path: path('M400,150'); 40 offset-path: path('M0,0 z');
41 } 41 }
42 42
43 #div2 { 43 #div2 {
44 offset-path: none; 44 offset-path: none;
45 } 45 }
46 46
47 </style> 47 </style>
48 </head> 48 </head>
49 <body> 49 <body>
50 50
51 <div id="div1"> 51 <div id="div1">
52 <span id="span1">First</span> 52 <span id="span1">First</span>
53 </div> 53 </div>
54 <div id="div2"> 54 <div id="div2">
55 <span id="span2">Second</span> 55 <span id="span2">Second</span>
56 </div> 56 </div>
57 <div id="div3"> 57 <div id="div3">
58 <span id="span3">Third</span> 58 <span id="span3">Third</span>
59 </div> 59 </div>
60 60
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698