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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-bottom.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations Created 6 years, 9 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #container-border { 5 #container-border {
6 border: 1px solid black; 6 border: 1px solid black;
7 margin: 10px; 7 margin: 10px;
8 width: 500px; 8 width: 500px;
9 } 9 }
10 10
11 #container { 11 #container {
12 font: 50px/1 Ahem, sans-serif; 12 font: 50px/1 Ahem, sans-serif;
13 color: grey; 13 color: grey;
14 width: 500px; 14 width: 500px;
15 height: 300px; 15 height: 300px;
16 overflow: hidden; 16 overflow: hidden;
17 } 17 }
18 18
19 #float-left { 19 #float-left {
20 float: left; 20 float: left;
21 position: relative; 21 position: relative;
22 overflow: visible; 22 overflow: visible;
23 shape-outside: ellipse(225px, 125px, 200px, 100px); 23 shape-outside: ellipse(200px 100px at 225px 125px);
24 shape-margin: 25px; 24 shape-margin: 25px;
25 width: 450px; 25 width: 450px;
26 height: 250px; 26 height: 250px;
27 } 27 }
28 28
29 #svg-shape-ellipse { 29 #svg-shape-ellipse {
30 position: absolute; 30 position: absolute;
31 display:block; 31 display:block;
32 top: 0px; 32 top: 0px;
33 left: 0px; 33 left: 0px;
(...skipping 14 matching lines...) Expand all
48 <br/> 48 <br/>
49 <br/> 49 <br/>
50 <br/> 50 <br/>
51 <br/> 51 <br/>
52 <br/> 52 <br/>
53 X X X X X 53 X X X X X
54 </div> 54 </div>
55 </body> 55 </body>
56 </html> 56 </html>
57 57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698