blob: 56c03a7f2a5e9408948fe0b9c8d56cffdb3d1ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|