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

Unified Diff: LayoutTests/svg/custom/percentage-of-html-parent.xhtml

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/svg/custom/percentage-of-html-parent.xhtml
diff --git a/LayoutTests/svg/custom/percentage-of-html-parent.xhtml b/LayoutTests/svg/custom/percentage-of-html-parent.xhtml
index 0309cc8c3e38b0377ae56a7fce591b08b6873828..cca67855df1e1083d96974fe63d1dfc4903ee8aa 100644
--- a/LayoutTests/svg/custom/percentage-of-html-parent.xhtml
+++ b/LayoutTests/svg/custom/percentage-of-html-parent.xhtml
@@ -6,7 +6,7 @@
<body>
<p>Below there is a div with an embedded green svg in it. Since the dimensions of the svg are 100%/100% of the parent, the green should cover the red(Bug 9752).</p>
<div style="width: 200px; height: 200px;background:red;">
- <svg xmlns="http://www.w3.org/2000/svg">
+ <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
<rect fill="green" height="100%" width="100%"/>
</svg>
</div>

Powered by Google App Engine
This is Rietveld 408576698