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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-transition-collision-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/animation-transition-collision-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-transition-collision-crash.html b/third_party/WebKit/LayoutTests/animations/animation-transition-collision-crash.html
deleted file mode 100644
index d0b756ef616b2f001a0a9dd9286a4aa8149e0d35..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/animation-transition-collision-crash.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<meta charset="utf-8">
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<style>
-@keyframes test {
- from {
- /* These properties have -webkit-* equivalents. */
- background-size: 10px 10px;
- box-shadow: 10px 10px green;
- perspective: 10px;
- transform: translate(10px, 10px);
- perspective-origin: 10px 10px;
- transform-origin: 10px 10px;
- }
-}
-#target {
- animation: test 1s;
- transition: all 1s;
-}
-</style>
-<div id="target"></div>
-<script>
-'use strict';
-async_test(t => {
- let frameWait = 5;
- function frame() {
- frameWait--;
- if (frameWait) {
- requestAnimationFrame(frame);
- } else {
- t.done();
- }
- }
- requestAnimationFrame(frame);
-}, 'Don\'t crash when animating transitioned properties');
-</script>

Powered by Google App Engine
This is Rietveld 408576698