Handle kOutOfFragmentainerSpace from multicol table cells.

If a table-cell multicol container refuses to lay out because of
insufficient space (in a nested fragmentation context), we need to break
before the row, or something even higher up in the tree.

Bug: 1347322
Change-Id: I454d7904988315112f5e46dca58b8112f98b9133
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3816645
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Morten Stenshorne <mstensho@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1032906}
diff --git a/css/css-multicol/crashtests/nested-with-multicol-table-cell.html b/css/css-multicol/crashtests/nested-with-multicol-table-cell.html
new file mode 100644
index 0000000..abb99c6
--- /dev/null
+++ b/css/css-multicol/crashtests/nested-with-multicol-table-cell.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1347322">
+<div style="columns:2;">
+  <div style="columns:2; margin-top:8px;">
+    text
+    <div style="display:table-cell; columns:2;"></div>
+  </div>
+</div>