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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-004.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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../resources/rounded-rectangle.js"></script>
5 <script>
6 function createShapeElement() {
7 var stylesheet = document.getElementById("stylesheet");
8 var dimensions = { width: 700, height: 500,
9 shapeX: 25, shapeY: 45,
10 shapeWidth: 600, shapeHeight: 300,
11 shapeRadiusX: 100, shapeRadiusY: 150 };
12 generateShapeElement("shape-inside", stylesheet.sheet, dimensions, 90);
13 }
14 </script>
15 <style id="stylesheet">
16 body { margin: 0; }
17 </style>
18 </head>
19 <body onload="createShapeElement()">
20 <div id="shape-inside"></div>
21 <div>
22 This test requires the Ahem font. It creates a rounded rectangle shape-insid e and fills it
23 with alternating black and white squares as inline content. The middle line overlaps the top
24 and bottom rounded corner area. The entire shape-inside should be filled, wi thout any overflow.
25 </div>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698