marijnh / Eloquent-JavaScript

The sources for the Eloquent JavaScript book
https://eloquentjavascript.net
2.99k stars 789 forks source link

Chapter 15 Scroll Event #501

Closed hkiame closed 4 years ago

hkiame commented 4 years ago

document.body.appendChild(document.createTextNode("supercalifragilisticexpialidocious ".repeat(1000))); affects the width of the body and not the height. The scroll event thus not fired.

marijnh commented 4 years ago

Unless you remove the space at the end, it does line-wrap and affect the height. At least, that example works fine for me.

hkiame commented 4 years ago

ooh yeah. i missed the space. Thanks