Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Unified Diff: LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash.html

Issue 1261463005: Add assertion/crash test for flexbox with relpos with scrollable with abspos. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved test to the correct directory. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash.html
diff --git a/LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash.html b/LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..40fed23b868eac9b6c6107098f1d7a5e3f16b984
--- /dev/null
+++ b/LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>
+<p>PASS if no crash or assertion failure.</p>
+<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>
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/relpos-with-scrollable-with-abspos-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698