summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-anchor-position/chrome-1512373-2-crash.html
blob: 433609766c9195344c5bb45a4c20d0843ae0d697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>Chrome crash bug 1512373 with @position-try fallback</title>
<link rel="help" href="https://crbug.com/1512373">
<style>
  @position-try --foo { left: 0; }
  #t {
    position: absolute;
    left: 999999px; /* force fallback */
    position-try-options: --foo;
  }
</style>
<div id="t"></div>
<script>
  t.animate([{"height":"100px"},{"height":"200px"}], {"duration":1});
</script>