summaryrefslogtreecommitdiff
path: root/test/html/render/min-width-nested-div.ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/html/render/min-width-nested-div.ref.html')
-rw-r--r--test/html/render/min-width-nested-div.ref.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/html/render/min-width-nested-div.ref.html b/test/html/render/min-width-nested-div.ref.html
new file mode 100644
index 00000000..5bf44ccf
--- /dev/null
+++ b/test/html/render/min-width-nested-div.ref.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Test min-width CSS property</title>
+ <style>
+ body {margin: 20px}
+ .container {background: lightcyan}
+ .test {width: 400px; display: inline-block; background: lightgrey}
+ </style>
+ </head>
+ <body>
+ <div class="container">
+ <div class="test">
+ <p>Hello</p>
+ </div>
+ </div>
+ </body>
+</html>