Index: third_party/WebKit/LayoutTests/animations/mutate-detached-keyframe-crash.html |
diff --git a/third_party/WebKit/LayoutTests/animations/mutate-detached-keyframe-crash.html b/third_party/WebKit/LayoutTests/animations/mutate-detached-keyframe-crash.html |
deleted file mode 100644 |
index 1559ef730e7ccdcea94c94c8c70d6beb525e9335..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/mutate-detached-keyframe-crash.html |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<!DOCTYPE html> |
-<style id="sheet"> |
-@keyframes test { to { } } |
-</style> |
-<script src="../resources/testharness.js"></script> |
-<script src="../resources/testharnessreport.js"></script> |
-<script> |
-test(() => { |
- var keyframeRule = document.styleSheets[0].cssRules[0].cssRules[0]; |
- sheet.remove(); |
- gc(); |
- keyframeRule.style.left = '0px'; |
-}, "Don't crash when mutating @keyframes rules that have been detached from the document."); |
-</script> |