Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/slot-content-visibility-13-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<script>
function go() {
const range = document.createRange();
range.setEnd(document.querySelector('textarea'), 0);
document.querySelector('progress').getBoundingClientRect();
range.getBoundingClientRect();
}
</script>
<body onload='go()'>
<progress>
<textarea>hello</textarea>
</progress>
<div style="content-visibility:hidden"></div>
</body>