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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt

Issue 1371723002: Devtools Animations: Add method to fetch CSS keyframed animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/inspector-protocol/css/css-get-keyframes-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt b/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0b4b280a2c8419ac7f084cff7bfd33eca63890e2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt
@@ -0,0 +1,29 @@
+Dumping CSS keyframed animations:
+@keyframes animName {
+ 0% {
+ width: 100px;
+ }
+ 10% {
+ width: 150px;
+ }
+ 100% {
+ width: 200px;
+ }
+}
+@keyframes mediaAnim {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+}
+@keyframes styleSheetAnim {
+ 0% {
+ color: red;
+ }
+ 100% {
+ color: blue;
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698