summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/file-control-crash.html
blob: 6d7ce3427ec0784051fb582248f2b5d4b6111ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<style>
* {
  aspect-ratio: 1206265768.1737075 / 726190483.5455273 ! important;
  float: inline-start;
  padding-block-end: 4348105909.35903Q;
  column-count: 1027970145;
  width: min-content;
  border-inline-end: groove gainsboro 319302447.513733ch;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
  const input = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
  document.documentElement.appendChild(input);
  input.type = "file";
})
</script>