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

Unified Diff: LayoutTests/svg/in-html/overflow-svg-root-style.html

Issue 220853002: SVG does not respect overflow:visible. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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/in-html/overflow-svg-root-style.html
diff --git a/LayoutTests/svg/in-html/overflow-svg-root-style.html b/LayoutTests/svg/in-html/overflow-svg-root-style.html
new file mode 100644
index 0000000000000000000000000000000000000000..02d5ad363586b7191e42eb9afac6f6777c9bb15b
--- /dev/null
+++ b/LayoutTests/svg/in-html/overflow-svg-root-style.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<style>
+div {
+ height:100px; width:100px;
+}
+
+#svg1 { overflow:hidden }
+#svg2 { overflow:scroll }
+#svg3 { overflow:visible }
+
+</style>
+<div><svg id="svg1" height="100" width="100" viewbox="0 0 100 100">
+ <path d="M210 10 L90 10 L90 90" fill="blue"/>
+</svg></div>
+
+<div><svg id="svg2" height="100" width="100" viewbox="0 0 100 100">
+ <path d="M210 10 L90 10 L90 90" fill="blue"/>
+</svg></div>
+
+<div><svg id="svg3" height="100" width="100" viewbox="0 0 100 100">
+ <path d="M210 10 L90 10 L90 90" fill="blue"/>
+</svg></div>
« no previous file with comments | « LayoutTests/svg/in-html/overflow-svg-root-expected.html ('k') | LayoutTests/svg/in-html/overflow-svg-root-style-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698