blob: 4f20c8705a8417e6d70881e778ddebc8b5d53134 [file] [log] [blame]
<!DOCTYPE html>
<div id="target"
style="width: 100px; height: 100px; background: blue;
clip-path: polygon(0% 100%, 100% 50%, 0% 0%, 0% 100%">
</div>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
target.style.width = '200px';
}
onload = runRepaintAndPixelTest;
</script>