Index: LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos-crash.html |
diff --git a/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos-crash.html b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..819e211914eded0fc1d3ea04f2926c2e84d7dbeb |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos-crash.html |
@@ -0,0 +1,17 @@ |
+<!DOCTYPE html> |
+<p>PASS if no crash or assertion failure.</p> |
+<div style="-webkit-columns:2;"> |
+ <div id="container"> |
+ <div style="-webkit-column-span:all;"></div> |
+ <div id="abspos" style="position:absolute;"></div> |
+ </div> |
+ <div style="-webkit-column-span:all;"></div> |
+</div> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ document.body.offsetTop; |
+ document.getElementById("container").style.position = "relative"; |
+ document.body.offsetTop; |
+ document.getElementById("abspos").style.display = "none"; |
+</script> |