jasmine / jasmine-gem

Jasmine ruby gem
682 stars 274 forks source link

Jasmine page is not scrollable #277

Closed ThomasSzabo closed 7 years ago

ThomasSzabo commented 7 years ago

The generated "Jasmine suite" HTML page on (default) localhost:8888 is not scrollable. Tested on latest Chrome and Safari.

ThomasSzabo commented 7 years ago

This CSS tweak fixes the scrolling issue:

.body {
    overflow-y: scroll;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}
slackersoft commented 7 years ago

I just checked with Jasmine's own specs and everything is scrolling just fine with 700 specs. Are you sure you don't have an included CSS file that is causing the scrolling problem?

ThomasSzabo commented 7 years ago

That´s embarrassing: yes, one of my included CSS caused the issue.

Thanks for making Jasmine, it changed the way how I code! Thomas