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