Mypal/layout/reftests/text/overflowwrap-05.html
2019-03-11 13:26:37 +03:00

19 lines
581 B
HTML

<!DOCTYPE html>
<!-- Test unsetting 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 = "normal";
}
</script>
</head>
<body onload="SwapStyle()">
<p id="pp" style="width: 100px; overflow-wrap: break-word;">It's lipsmackinthirstquenchinacetastinmotivatingoodbuzzincooltalkinhighwalkinfastlivinevergivincoolfizzin Firefox!</p>
</body>
</html>