summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/849407-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/849407-1.html')
-rw-r--r--layout/reftests/bugs/849407-1.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/bugs/849407-1.html b/layout/reftests/bugs/849407-1.html
new file mode 100644
index 0000000000..81309873b0
--- /dev/null
+++ b/layout/reftests/bugs/849407-1.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="UTF-8">
+ <style>
+ legend {
+ display: flex;
+ width: 200px;
+ height: 100px;
+ overflow: scroll;
+ border: 2px dashed gray;
+ }
+ div.child {
+ background: lightblue;
+ height: 1000px;
+ }
+ </style>
+</head>
+<body>
+ <fieldset>
+ <legend>
+ <div class="child">
+ There should be scrollbars making this area scrollable.
+ </div>
+ </legend>
+ </fieldset>
+</body>
+</html>