summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/repaint-in-iframe.html
blob: 7de38747f9b7125b32a6dd108398d3b5e4611649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>
<iframe srcdoc="<div style='height: 50px; width: 50px; background-color: red;'></div>"></iframe>