diff options
Diffstat (limited to 'layout/reftests/bugs/456484-1.html')
-rw-r--r-- | layout/reftests/bugs/456484-1.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/456484-1.html b/layout/reftests/bugs/456484-1.html new file mode 100644 index 0000000000..58c1d5829d --- /dev/null +++ b/layout/reftests/bugs/456484-1.html @@ -0,0 +1,19 @@ +<html>
+<head>
+<title>Inside block shrinkwraps when outside inline-block has scrollframe</title>
+<style>
+div {
+ border: 1px solid black;
+}
+</style>
+</head>
+<body>
+
+<div style="display: inline-block; width: 500px; overflow: auto; background-color: red;">
+<div style="background-color: lime;">
+div
+</div>
+</div>
+
+</body>
+</html>
|