1
0
Fork 0
firefox/layout/reftests/text/overflowwrap-04.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
579 B
HTML

<!DOCTYPE html>
<!-- Test setting overflow-wrap: break-word dynamically -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Test Overflowwrap</title>
<script type="text/javascript">
function SwapStyle()
{
par = document.getElementById("pp");
par.style.overflowWrap = "break-word";
}
</script>
</head>
<body onload="SwapStyle()">
<p id="pp" style="width: 100px; overflow-wrap: normal;">It's lipsmackinthirstquenchinacetastinmotivatingoodbuzzincooltalkinhighwalkinfastlivinevergivincoolfizzin Firefox!</p>
</body>
</html>