Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: LayoutTests/animations/pseudo-element-animation-with-rems.html

Issue 170283003: Attempt to fix issue 344300 by guarding against rootStyle being null. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more information test body Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/animations/pseudo-element-animation-with-rems-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/animations/pseudo-element-animation-with-rems-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698