tenfourfox/layout/reftests/text/wordwrap-05.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
565 B
HTML

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