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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/motion-path/compute-distance.html

Issue 2461603003: CSS Motion Path: Place offset-anchor on the path (Closed)
Patch Set: rebase 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 div { 5 div {
6 position: absolute; 6 position: absolute;
7 transform-origin: 0% 0%; 7 transform-origin: 0% 0%;
8 offset-anchor: 0% 0%;
8 } 9 }
9 .closed { 10 .closed {
10 offset-path: path('M 0 0 L 500 0 Z'); 11 offset-path: path('M 0 0 L 500 0 Z');
11 } 12 }
12 .open { 13 .open {
13 offset-path: path('M 0 0 L 1000 0'); 14 offset-path: path('M 0 0 L 1000 0');
14 } 15 }
15 #div1 { 16 #div1 {
16 offset-distance: -3700px; 17 offset-distance: -3700px;
17 transform: translate3d(0px, 10px, 1px); 18 transform: translate3d(0px, 10px, 1px);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <div class="closed" id="div5">div5</div> 71 <div class="closed" id="div5">div5</div>
71 <div class="closed" id="div6">div6</div> 72 <div class="closed" id="div6">div6</div>
72 <div class="open" id="div7">div7</div> 73 <div class="open" id="div7">div7</div>
73 <div class="open" id="div8">div8</div> 74 <div class="open" id="div8">div8</div>
74 <div class="open" id="div9">div9</div> 75 <div class="open" id="div9">div9</div>
75 <div class="open" id="div10">div10</div> 76 <div class="open" id="div10">div10</div>
76 <div class="open" id="div11">div11</div> 77 <div class="open" id="div11">div11</div>
77 <div class="open" id="div12">div12</div> 78 <div class="open" id="div12">div12</div>
78 </body> 79 </body>
79 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698