Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!DOCTYPE html>
2 <!-- Test setting word-wrap: break-word dynamically -->
3 <html>
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
6 <title>Test Wordwrap</title>
7 <script type="text/javascript">
8 function SwapStyle()
9 {
10 par = document.getElementById("pp");
11 par.style.wordWrap = "break-word";
12 }
13 </script>
14 </head>
15 <body onload="SwapStyle()">
16 <p id="pp" style="width: 100px; word-wrap: normal;">It's lipsmackinthirstquenchinacetastinmotivatingoodbuzzincooltalkinhighwalkinfastlivinevergivincoolfizzin Firefox!</p>
17 </body>
18 </html>