blob: 6377c1fadd544fbbeac0228fcda5851df02026d0 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
iframe {
margin: 20px;
height: 200px;
width: 200px;
border: 1px solid black;
}
</style>
<script type="text/javascript" charset="utf-8">
async function doTest()
{
testRunner?.waitUntilDone();
await testRunner?.displayAndTrackRepaints();
document.getElementById('iframe').setAttribute('scrolling', 'yes');
testRunner?.notifyDone();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<!-- Test with already-composited iframe contents, and iframe itself composited. -->
<!-- You should see a green square, no red. -->
<iframe id="iframe" scrolling="no" src="resources/red-green-subframe.html"></iframe>
</body>
</html>