summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html b/testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html
new file mode 100644
index 0000000000..f0699f2046
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/position-relative-with-scrollable-with-abspos-crash.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<title>CSS Flexbox: Crash for flex box with relpos with scrollable with abspos</title>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@opera.com">
+<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#flex-container">
+<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollable-overflow">
+<link rel="issue" href="https://crbug.com/498969">
+<meta name="assert" content="Check that crash doesn't happen in flex box with descendents that include relpos, overflow:auto scrollbars, and abspos.">
+
+<div style="display:flex;">
+ <div>
+ <div style="position:relative; width:5em;">
+ <div style="overflow:auto;">
+ <div>xxxxxxxxxxxxxxxxxxxxxx</div>
+ <div style="position:absolute;"></div>
+ </div>
+ </div>
+ </div>
+</div>