| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #scroll { | 4 #scroll { |
| 5 width: 200px; | 5 width: 200px; |
| 6 height: 200px; | 6 height: 200px; |
| 7 overflow: scroll; | 7 overflow: scroll; |
| 8 border: 1px solid black; | 8 border: 1px solid black; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 testRunner.dumpAsText(); | 32 testRunner.dumpAsText(); |
| 33 var scroll = document.getElementById("scroll"); | 33 var scroll = document.getElementById("scroll"); |
| 34 var scrollHeight = scroll.scrollHeight; | 34 var scrollHeight = scroll.scrollHeight; |
| 35 if (scrollHeight > 200) { | 35 if (scrollHeight > 200) { |
| 36 var result = document.getElementById("result"); | 36 var result = document.getElementById("result"); |
| 37 result.innerHTML = "SUCCESS! The transform was applied to the scroll
Height!"; | 37 result.innerHTML = "SUCCESS! The transform was applied to the scroll
Height!"; |
| 38 } | 38 } |
| 39 </script> | 39 </script> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |