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

Unified Diff: third_party/WebKit/LayoutTests/animations/string-keyframes-identifier.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too 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/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>

Powered by Google App Engine
This is Rietveld 408576698