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

Unified Diff: third_party/WebKit/LayoutTests/animations/webkit-filter-default-arg-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/webkit-filter-default-arg-crash.html
diff --git a/third_party/WebKit/LayoutTests/animations/webkit-filter-default-arg-crash.html b/third_party/WebKit/LayoutTests/animations/webkit-filter-default-arg-crash.html
deleted file mode 100644
index 27d382d745744715f0916ce6ccc1e47cd53a060b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/animations/webkit-filter-default-arg-crash.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<style>
-@keyframes anim-blur {
- from { -webkit-filter: blur(); }
- to { -webkit-filter: blur(1px); }
-}
-@keyframes anim-brightness {
- from { -webkit-filter: brightness(); }
- to { -webkit-filter: brightness(1); }
-}
-@keyframes anim-contrast {
- from { -webkit-filter: contrast(); }
- to { -webkit-filter: contrast(1); }
-}
-@keyframes anim-drop-shadow {
- from { -webkit-filter: drop-shadow(); }
- to { -webkit-filter: drop-shadow(1px 1px); }
-}
-@keyframes anim-grayscale {
- from { -webkit-filter: grayscale(); }
- to { -webkit-filter: grayscale(1); }
-}
-@keyframes anim-hue-rotate {
- from { -webkit-filter: hue-rotate(); }
- to { -webkit-filter: hue-rotate(1deg); }
-}
-@keyframes anim-invert {
- from { -webkit-filter: invert(); }
- to { -webkit-filter: invert(1); }
-}
-@keyframes anim-opacity {
- from { -webkit-filter: opacity(); }
- to { -webkit-filter: opacity(1); }
-}
-@keyframes anim-sepia {
- from { -webkit-filter: sepia(); }
- to { -webkit-filter: sepia(1); }
-}
-@keyframes anim-saturate {
- from { -webkit-filter: saturate(); }
- to { -webkit-filter: saturate(1); }
-}
-</style>
-<div style="animation: anim-blur 1s"></div>
-<div style="animation: anim-brightness 1s"></div>
-<div style="animation: anim-contrast 1s"></div>
-<div style="animation: anim-drop-shadow 1s"></div>
-<div style="animation: anim-grayscale 1s"></div>
-<div style="animation: anim-hue-rotate 1s"></div>
-<div style="animation: anim-invert 1s"></div>
-<div style="animation: anim-opacity 1s"></div>
-<div style="animation: anim-sepia 1s"></div>
-<div style="animation: anim-saturate 1s"></div>
-<script>
-var asyncHandle = async_test("Don't crash when animating default filter parameters.");
-requestAnimationFrame(() => asyncHandle.done());
-</script>

Powered by Google App Engine
This is Rietveld 408576698