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