summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html b/testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html
new file mode 100644
index 0000000000..ab59c270ce
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>CSS Test Reference: SVG element with a view box with explicit 100% width and height should occupy the entire view port</title>
+<link rel="author" title="Google" href="http://www.google.com/" />
+<style type="text/css">
+
+* {
+ margin: 0;
+ padding: 0;
+}
+
+img {
+ display: block;
+ visibility: hidden;
+}
+
+div {
+ background-color: green;
+}
+
+</style>
+</head>
+<body>
+<p>The box below should occupy the entire view port.</p>
+<div><img src="../support/60x60-green.png" width="100%" height="100%"></div>
+</body>
+</html>