text-overflow-021-ref.html (515B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <title>CSS Basic User Interface Test: test reference</title> 5 <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/"> 6 <style> 7 div { 8 font-family: monospace; 9 width: 16ch; 10 white-space: pre; 11 overflow: scroll; 12 border: solid blue; 13 } 14 </style> 15 16 <p>This test passes if the text is in the blue box below is “PASS”. 17 <div id=test> PASS</div> 18 <script> 19 var test = document.getElementById("test"); 20 test.scrollBy(500,0); 21 </script>