| Index: LayoutTests/animations/pseudo-element-animation-with-rems.html
|
| diff --git a/LayoutTests/animations/pseudo-element-animation-with-rems.html b/LayoutTests/animations/pseudo-element-animation-with-rems.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e2644a4a8a7849edcedf6e552c0e5104226516a6
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/pseudo-element-animation-with-rems.html
|
| @@ -0,0 +1,22 @@
|
| +<html>
|
| +<head>
|
| + <script>
|
| + if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + }
|
| + </script>
|
| + <style>
|
| + @-webkit-keyframes anim {
|
| + 42% {
|
| + -webkit-border-horizontal-spacing: 42rem;
|
| + }
|
| + }
|
| + body::first-letter {
|
| + -webkit-animation-name: anim;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| +This test passes if it does not crash.
|
| +</body>
|
| +</html>
|
|
|