зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
549 B
HTML
24 строки
549 B
HTML
<!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"
|
|
setTimeout(() => {
|
|
a.style.stopColor = "#000"
|
|
b.style.gridColumn = "crispEdges"
|
|
window.saved = b.offsetWidth;
|
|
document.documentElement.className = "";
|
|
}, 0)
|
|
}
|
|
</script>
|
|
</head>
|
|
</html>
|