diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html')
-rw-r--r-- | testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html b/testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html new file mode 100644 index 0000000000..a74e651dc2 --- /dev/null +++ b/testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1362550"> +<style> + .multicol { + column-count: 2; + width: 200px; + } + .relpos { + position: relative; + } + .abspos { + height: 25%; + position: absolute; + } +</style> +<div class="multicol"> + <div class="relpos"> + <div class="abspos"> + <p> + text + </p> + </div> + </div> + <figure class="relpos"> + <div class="abspos"> + <p> + text + </p> + </div> + </figure> +</div> |