overflowwrap-04.html (579B)
1 <!DOCTYPE html> 2 <!-- Test setting overflow-wrap: break-word dynamically --> 3 <html> 4 <head> 5 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 6 <title>Test Overflowwrap</title> 7 <script type="text/javascript"> 8 function SwapStyle() 9 { 10 par = document.getElementById("pp"); 11 par.style.overflowWrap = "break-word"; 12 } 13 </script> 14 </head> 15 <body onload="SwapStyle()"> 16 <p id="pp" style="width: 100px; overflow-wrap: normal;">It's lipsmackinthirstquenchinacetastinmotivatingoodbuzzincooltalkinhighwalkinfastlivinevergivincoolfizzin Firefox!</p> 17 </body> 18 </html>