blob: ed12b364f52d74e620fec18fc5ff9e0631ae976f [file] [log] [blame]
<head>
<title>Test if it doesn't crash when pseudo element has animation with rems unit</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
done();
</script>
<style>
@-webkit-keyframes anim {
42% {
-webkit-border-horizontal-spacing: 42rem;
}
}
body::first-letter {
-webkit-animation-name: anim;
}
</style>
</head>