blob: 63533ee30256f980804b3762d0b7a1032c56f9b1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<html>
<body style="background-size: cover; transition-duration: 1ms"></body>
<script>
var body = document.body;
/* flush */ getComputedStyle(body, "").backgroundSize;
body.style.backgroundSize = 'contain';
/* flush */ getComputedStyle(body, "").backgroundSize;
</script>
</html>
|