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

Unified Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html

Issue 63623002: [CSS Shapes] Image shape-outside with vertical gaps is handled incorrectly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed "-webkit" prefix from the test case Created 7 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html
diff --git a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..10f91fc99f98796db8579446b3b5a8a4951b59b9
--- /dev/null
+++ b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+ #content {
+ font-size: 30px;
+ color: green;
+ }
+
+ #image-shape {
+ float: left;
+ }
+</style>
+</head>
+<body>
+ <p>The lines of text below should appear to the right of the blue rectangles.</p>
+ <div id="content">
+ <IMG id="image-shape" src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100px' height='100px' fill='blue'><rect width='100' height='40'/><rect y='60' width='100' height='40'/></svg>">
+ One<br>Two<br>Free<br>Four
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698