blob: 5f1995e21c97d79596849c9c051cca0be8fa815e [file] [log] [blame]
<!DOCTYPE HTML>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<style>
#scroller {
overflow: scroll;
height: 300px;
width: 300px;
background-color: red;
}
#outer {
height: 800px;
width: 250px;
background-color: blue;
}
#scrolled {
height: 1000px;
width: 250px;
background-color: green;
}
#fixed {
position: fixed;
height: 100px;
width: 100px;
background-color: green;
top: 400px;
left: 100px;
}
</style>
<div id="outer">
<div id="scroller">
<div id="scrolled"></div>
<div id="fixed"></div>
</div>
</div>
<script>
if (window.internals)
internals.settings.setPreferCompositingToLCDTextEnabled(true);
onload = function() {
runAfterLayoutAndPaint(function() {
outer.style.clipPath = "polygon(40px 550px,432px 302px,409px 237px,46px 156px)";
}, true);
};
</script>