diff options
Diffstat (limited to 'layout/base/crashtests/1506204.html')
-rw-r--r-- | layout/base/crashtests/1506204.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/base/crashtests/1506204.html b/layout/base/crashtests/1506204.html new file mode 100644 index 0000000000..6c97282b50 --- /dev/null +++ b/layout/base/crashtests/1506204.html @@ -0,0 +1,17 @@ +<head id="a"> +<style> +* { + column-count: 1 +} +.x { + position: fixed; + column-span: all; +} +</style> +<script> +function go() { + a.appendChild(b); +} +</script> +<body onload=go()> +<ol id="b" class="x">A</ol> |