fix(tests): normalize scrollbars in headful tests (#2622)

Scrollbars look different on different platforms, so must be made invisible in tests. As a drive-by, xdescribe was broken with the new test runner.

References #2524
This commit is contained in:
Joel Einbinder
2018-05-29 15:30:08 -07:00
committed by Andrey Lushnikov
parent 41ccd0bded
commit 8e12d197a2
4 changed files with 15 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ body iframe {
flex-grow: 1;
flex-shrink: 1;
}
::-webkit-scrollbar{
display: none;
}
</style>
<script>
async function attachFrame(frameId, url) {