Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- Test that changes to 'white-space' create frames when necessary --> |
michael@0 | 4 | <head> |
michael@0 | 5 | <script> |
michael@0 | 6 | function loaded() { |
michael@0 | 7 | document.body.offsetHeight; |
michael@0 | 8 | document.getElementById('d1').style.whiteSpace = 'pre'; |
michael@0 | 9 | document.getElementById('d2').style.whiteSpace = 'pre-wrap'; |
michael@0 | 10 | document.getElementById('d3').style.whiteSpace = 'pre-line'; |
michael@0 | 11 | } |
michael@0 | 12 | </script> |
michael@0 | 13 | </head> |
michael@0 | 14 | <body onload="loaded()" style="border:1px solid black;"> |
michael@0 | 15 | <div id="d1"> <span>Hello</span> </div> |
michael@0 | 16 | <div id="d2"> <span>Hello</span> </div> |
michael@0 | 17 | <div id="d3"> |
michael@0 | 18 | <span>Hello</span> |
michael@0 | 19 | </div> |
michael@0 | 20 | </body> |
michael@0 | 21 | </html> |