blob: 6456b03d231cf63d90814f4c9c1cb3ee9e7ff122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<div style="position:absolute; height: 200px; width: 200px; transform: translateZ(0); background: lightgray"></div>
<div style="position:absolute; height: 200px; width: 200px; top: 50px; left: 50px; background:lightblue"></div>
<div id="target" style="position:absolute; height: 200px; width: 200px; top: 50px; left: 50px; background:lightblue"></div>
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<script>
// Tests that causing a squashed layer to leave its squashing layer causes an invalidation in the squashing layer for the previous
// location of the squashed layer.
function repaintTest() {
var target = document.getElementById("target");
target.style.transform = 'translateZ(0)';
};
runRepaintTest();
</script>
|