tenfourfox/layout/style/crashtests/1356601-1.html
2017-05-29 17:46:30 -07:00

19 lines
230 B
HTML

<!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>