blob: 2a1734aba4e307c0c0f1f6b3246d4e7dc587c415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
a = document.createElement("div")
b = document.createElement("div")
a.appendChild(b)
document.documentElement.appendChild(a)
a.style.overflow = "scroll"
a.style.columnWidth = "calc(-15px)"
b.style.display = "table-caption"
requestIdleCallback(() => {
a.style.stopColor = "#000"
b.style.gridColumn = "crispEdges"
window.saved = b.offsetWidth;
document.documentElement.className = "";
})
}
</script>
</head>
</html>
|