blob: f3d5724436d0fbd8de89a2a45e3bfa86fe50d52b [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>
<iframe srcdoc="<div style='height: 50px; width: 50px; background-color: red;'></div>"></iframe>