mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
565 B
HTML
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>
|