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

Unified Diff: third_party/WebKit/LayoutTests/animations/import-crash.html

Issue 2966953002: Move animations crash tests to subdirectory (Closed)
Patch Set: Rename crash-tests/ to stability/ Created 3 years, 5 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
Index: third_party/WebKit/LayoutTests/animations/import-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/import-crash.html b/third_party/WebKit/LayoutTests/animations/import-crash.html
deleted file mode 100644
index 317a86cdc8fc5d60bcda05182ee341998355cfcc..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/import-crash.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-
-<html lang="en">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Test that @import rule importing keyframes does not crash</title>
- <style type="text/css"> @import "resources/keyframes.css"; </style>
- <style type="text/css" media="screen">
- #box {
- position: absolute;
- left: 0;
- top: 100px;
- height: 100px;
- width: 100px;
- background-color: blue;
- animation-duration: 1s;
- animation-timing-function: linear;
- animation-name: anim;
- }
- </style>
- <script type="text/javascript" charset="utf-8">
- if (window.testRunner)
- testRunner.dumpAsText();
- </script>
-</head>
-<body>
- <p>This test simply loads a sheet using @import that contains keyframes, to see if https://bugs.webkit.org/show_bug.cgi?id=20855
-is fixed.
- <p>It passes if it does not crash.
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698