blob: a91a3878373c433a72b9b757ea396d423c08f68d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="resources/text-based-repaint.js"></script>
<script>
window.onload = function() {
runRepaintTest();
};
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; transform: translateZ(0)">
<iframe srcdoc="<div style='height: 50px; width: 50px; background-color: red;'></div>"></iframe>
</div>