blob: 0f00579dd1f06fd1bc8bfec8fb1e92074fa14468 [file] [log] [blame]
<!DOCTYPE html>
<style>
.bordered {
height: 150px;
width: 250px;
background-color: blue;
border-style: solid;
border-radius: 25px;
border-width: 10px;
border-color: gray;
margin: 10px 10px;
overflow: hidden;
}
.shadowed {
box-shadow: 0 0 10px 10px;
}
iframe {
border: none;
}
</style>
<div id="div1" class="bordered">
<iframe id="iframe1" src="resources/composited-subframe-2.html"></iframe>
</div>
<div id="div2" class="bordered shadowed">
<iframe id="iframe2" src="resources/composited-subframe-2.html"></iframe>
</div>