summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1356601-1.html
blob: 4fc28bd58f0d9a8886ac77bc3adfe01800ff7152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html>
<style>
div::first-line {
  --bar: left;
}
span {
  animation: var(--bar) 5s infinite alternate;
}
@keyframes left {
  from {left: 0;}
  to {left: 30px;}
}
</style>
<div>
  <span>Crash</span>
</div>
</html>