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

Unified Diff: LayoutTests/web-animations-api/w3c/keyframe-properties.html

Issue 661453004: Add getPropertyNames to v8 Dictionaries and make use of in Keyframes processing. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/bindings/core/v8/Dictionary.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/web-animations-api/w3c/keyframe-properties.html
diff --git a/LayoutTests/web-animations-api/w3c/keyframe-properties.html b/LayoutTests/web-animations-api/w3c/keyframe-properties.html
index 639151c95218da8253a6fe4812dddc2e33bf20e1..10a21950ab2bc8bea6246c233af36d79049cd735 100644
--- a/LayoutTests/web-animations-api/w3c/keyframe-properties.html
+++ b/LayoutTests/web-animations-api/w3c/keyframe-properties.html
@@ -36,11 +36,10 @@ test(function() {
value: '100px',
enumerable: 'true'});
var keyframe = new Keyframe();
- assert_array_equals(Object.keys(keyframe), ["top"]);
try {
- div.animate([keyframe, {top: '200px'}], 1);
+ div.animate([keyframe, {top: '200px', left: '200px', height: '200px'}], 1);
} catch (e) {
- assert_unreached("Mismatched properties - left, width or height considered on keyframe.");
+ assert_unreached("Mismatched properties - left, width or height not considered on keyframe.");
}
},
'inherited keyframe properties tests',
« no previous file with comments | « no previous file | Source/bindings/core/v8/Dictionary.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698