diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/crashtests/dialog-table-crash.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/crashtests/dialog-table-crash.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/crashtests/dialog-table-crash.html b/testing/web-platform/tests/css/css-tables/crashtests/dialog-table-crash.html new file mode 100644 index 0000000000..decc3eb1fb --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/crashtests/dialog-table-crash.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<link rel="help" href="https://crbug.com/1175425"> + +<div id="container" style="border-collapse:collapse;"> + <div id="insertBefore"></div> + <div style="display:table-row-group;"></div> + <div id="victim" style="border:solid; display:table-row-group;"> + <div style="display:table-cell;"></div> + </div> +</div> + +<script> + document.body.offsetTop; + container.insertBefore(insertBefore, victim) +</script> + |