Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/multicol-dynamic-add-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Multi-column Layout Test: Change textContent on flex container in multi-column context</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="multicol-dynamic-add-002-ref.html">
<meta name="assert" content="This test checks that dynamically changing textContent on a flex container in a multi-column context renders correctly.">
<script>
function runTest() {
document.body.offsetHeight;
a.textContent = "f";
document.documentElement.removeAttribute("class");
}
</script>
<style>
:root { columns: 0px }
</style>
<body onload="runTest();">
<q id="a" style="display: flex">
<small>x</label>
<li>
</body>
</html>