blob: 56c4911b19b6c8f4a3cd8a4a497eb6fc7177a914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<div style="position: absolute; width: 200px; height: 200px; background: lightgray; will-change: transform"></div>
<div style="position: absolute; width: 200px; height: 200px; top: 50px; left: 50px; background: lightblue"></div>
<div id="target" style="position: absolute; width: 200px; height: 200px; top: 100.45px; left: 100.45px; background: papayawhip"></div>
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
target.style.backgroundColor = 'red';
}
runRepaintTest();
</script>
|