gecko-dev/servo/tests/html/iframe-scroll-stacking.html
Patrick Walton 9c109d7fbb servo: Merge #9429 - Dispatch scroll events to layers above others (from pcwalton:iframe-scroll-stacking); r=mbrubeck
Closes #9416.

r? @mbrubeck

Source-Repo: https://github.com/servo/servo
Source-Revision: b66a0014510aaebb7c926160923738fc4fe88ca2
2016-01-26 06:59:23 +05:01

28 lines
366 B
HTML

<!DOCTYPE html>
<style>
body {
margin: 0;
}
iframe {
display: block;
width: 300px;
height: 300px;
position: absolute;
background: white;
}
.i1 {
top: 50px;
left: 50px;
}
.i2 {
top: 100px;
left: 100px;
}
</style>
<iframe class="i1" src="lipsum.html"></iframe>
<iframe class="i2" src="lipsum.html"></iframe>