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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/keyframes-errors.html

Issue 2523143002: Layout tests: remove webkit prefix from test names (Closed)
Patch Set: Created 4 years, 1 month 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/fast/css/keyframes-errors.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-errors.html b/third_party/WebKit/LayoutTests/fast/css/keyframes-errors.html
similarity index 84%
rename from third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-errors.html
rename to third_party/WebKit/LayoutTests/fast/css/keyframes-errors.html
index 833bdb009ad8b4dae91471ee23e09392238b592f..578d067d2e6c6e98f33ed2a519071dd88956183d 100644
--- a/third_party/WebKit/LayoutTests/fast/css/webkit-keyframes-errors.html
+++ b/third_party/WebKit/LayoutTests/fast/css/keyframes-errors.html
@@ -1,8 +1,8 @@
<html>
<body>
- <p>Test for Blink bug <a href="https://code.google.com/p/chromium/issues/detail?id=228870">228870</a>: CSS parser incorrectly handles invalid @-webkit-keyframes key values</p>
+ <p>Test for Blink bug <a href="https://code.google.com/p/chromium/issues/detail?id=228870">228870</a>: CSS parser incorrectly handles invalid @keyframes key values</p>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
0 {foo: bar;}
}
@@ -12,7 +12,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
0, 100% {foo: bar;}
}
@@ -22,7 +22,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
10%, none {foo: bar;}
}
@@ -32,7 +32,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
-10%, from {foo: bar;}
}
@@ -42,7 +42,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
0 {foo: bar;} from
}
@@ -52,7 +52,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
{foo: bar;}
}
@@ -62,7 +62,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
10%
}
@@ -72,7 +72,7 @@
</style>
<style>
- @-webkit-keyframes foo {
+ @keyframes foo {
from (}) {}
#(}) {}
}

Powered by Google App Engine
This is Rietveld 408576698