blob: 021d3cfe57e7c8dad5c060b914a50e10473f5a3b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../resources/text-based-repaint.js"></script>
<script>
window.onload = function() {
runRepaintAndPixelTest();
};
function repaintTest() {
document.getElementsByTagName('iframe')[0]
.contentDocument
.getElementsByTagName('div')[0]
.style
.backgroundColor = 'green';
}
</script>
</head>
<div style="height: 400px"></div>
<div style="height: 200px; width: 200px; will-change: transform;">
<iframe srcdoc="<div style='height: 50px; width: 50px; background-color: red;'></div>"></iframe>
</div>