Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-fit/text-box-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="iso-8859-8">
<style>
.target {
text-fit: grow consistent;
text-box: trim-both cap text;
}
</style>
<body contenteditable=true>
<div class="target">a b</div>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.body.focus();
document.execCommand("selectAll");
document.execCommand("InsertImage");
requestAnimationFrame(() => {
document.documentElement.removeAttribute('class');
});
});
});
</script>
</body>
</html>