trisquel-icecat/icecat/testing/web-platform/tests/editing/crashtests/white-space-nowrap-to-pre-line.html
2025-10-06 02:35:48 -06:00

28 lines
740 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>No crashes or DCHECK failures if white-space changes from nowrap to pre-line</title>
<link rel="author" title="Peng Zhou" href="mailto:zhoupeng.1996@bytedance.com">
<link rel="help" href="https://drafts.csswg.org/css-text-4/#white-space-property">
<link rel="help" href="https://issues.chromium.org/issues/389738294">
<style>
span {
white-space: nowrap;
}
</style>
<script>
window.addEventListener('load', () => {
const span = document.querySelector('span');
span.innerHTML = 'text\n\t';
requestAnimationFrame(() => {
// pre-line should remove end-of-line spaces
span.style.whiteSpace = 'pre-line';
});
});
</script>
</head>
<body>
<span></span>
</body>
</html>