summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/1391736.html
blob: a4a90e9f9cd06fde0e0eb0c4045ecd310bf28172 (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"
  setTimeout(() => {
    a.style.stopColor = "#000"
    b.style.gridColumn = "crispEdges"
    window.saved = b.offsetWidth;
    document.documentElement.className = "";
  }, 0)
}
</script>
</head>
</html>