Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /accessibility/crashtests/multicol-with-text-change-role-relayout-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="container">
<div id="mc" style="columns:2; column-fill:auto; width:200px; height:30px; line-height:20px; orphans:1; widows:1;">
x<br>
x<br>
</div>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
mc.style.width = "201px";
container.setAttribute("role", "treegrid");
document.body.offsetTop;
document.documentElement.className = "";
});
});
});
</script>