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

Unified Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html

Issue 26390004: Rework SVG sizing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix mishap during rebase in svg.css Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html
diff --git a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html
index 1c708531e1f7f37db080302c02166f0af60fb47f..bbed6aeb981386e0cea6c716c23f0faf031d2286 100644
--- a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html
+++ b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html
@@ -11,14 +11,14 @@
width: 200px;
height: 400px;
float: left;
- shape-outside: url("data:image/svg+xml;UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='50%' height='25%'><rect width='100%' height='100%' fill='blue' /></svg>");
- background-image: url("data:image/svg+xml;UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='50%' height='25%'><rect width='100%' height='100%' fill='blue' /></svg>");
+ shape-outside: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
background-repeat: no-repeat;
}
</style>
</head>
<body>
-<p>You should see three blue squares: above the green square, to the green square's right, and below the green square.</p>
+<p>You should see three green squares: above the blue square, to the blue square's right, and below the blue square.</p>
<div id="container">
<div id="shape-outside"></div>
X<br>X<br>X

Powered by Google App Engine
This is Rietveld 408576698