Index: third_party/WebKit/LayoutTests/animations/string-keyframes-identifier.html |
diff --git a/third_party/WebKit/LayoutTests/animations/string-keyframes-identifier.html b/third_party/WebKit/LayoutTests/animations/string-keyframes-identifier.html |
deleted file mode 100644 |
index 0b9bc74091f2cca7e3cb082a92e4cd9f39d5e019..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/animations/string-keyframes-identifier.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<!DOCTYPE html> |
-<script src="../resources/testharness.js"></script> |
-<script src="../resources/testharnessreport.js"></script> |
-<style> |
-@-webkit-keyframes "string id" { |
- from { background: green; } |
- to { background: green; } |
-} |
-#target { |
- background: red; |
- -webkit-animation: "string id" 1s forwards; |
-} |
-</style> |
-<div id="target"></div> |
-<script> |
-test(function() { |
- assert_equals(getComputedStyle(target).backgroundColor, 'rgb(0, 128, 0)'); |
-}, 'Check that strings are permitted as @keyframes identifiers'); |
-</script> |