summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-details-element/details-cq-crash.html
blob: 393e464c4cfbbfebe6017c274350a31e8194de73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel=author href="mailto:vmpstr@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1334983">

<canvas>
  <details>
    <card card>

<script>
async function trigger() {
 document.querySelector("canvas").style.setProperty("container-type", "size");
 document.querySelector("canvas").style.setProperty("column-span", "all");
 document.querySelector("card").setAttribute("contenteditable", "true");
}
onload = requestAnimationFrame(() => requestAnimationFrame(trigger));
</script>