Index: LayoutTests/svg/zoom/text/zoom-em-units.html |
diff --git a/LayoutTests/svg/zoom/text/zoom-em-units.html b/LayoutTests/svg/zoom/text/zoom-em-units.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a1b1e43b04e05923c988ee2e29c444f6c19724a6 |
--- /dev/null |
+++ b/LayoutTests/svg/zoom/text/zoom-em-units.html |
@@ -0,0 +1,27 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<style> |
+body { |
+ zoom: 2; |
+} |
+rect { |
+ fill : green; |
+} |
+div { |
+ width: 3em; |
+ height: 3em; |
+ display: inline-block; |
+ background-color: green; |
+} |
+</style> |
+</head> |
+<body> |
+ Test for crbug.com/245996: This test passes if<br/> |
+ there are two green squares of the same size.<br/> |
+ <div></div> |
+ <svg width="3em" height="3em"> |
+ <rect x="0" y="0" width="100%" height="100%"/> |
+ </svg> |
+</body> |
+</html> |