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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/id.html

Issue 2408083002: Revert of Import wpt@357b83b809e3cbc7a1805e7c3ca108a7980d782f (Closed)
Patch Set: Created 4 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/imported/wpt/web-animations/interfaces/Animation/id.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/id.html b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/id.html
index 2fadd562369951e9305e563846d1898e14f9af2a..9d293733756350262046ff5d42b98c024bdce88b 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/id.html
+++ b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/interfaces/Animation/id.html
@@ -13,16 +13,11 @@
test(function(t) {
var div = createDiv(t);
var animation = div.animate({}, 100 * MS_PER_SEC);
- assert_equals(animation.id, '', 'id for Animation is initially empty');
-}, 'Animation.id initial value');
-
-test(function(t) {
- var div = createDiv(t);
- var animation = div.animate({}, 100 * MS_PER_SEC);
- animation.id = 'anim';
+ assert_equals(animation.id, '', 'id for CSS Animation is initially empty');
+ animation.id = 'anim'
assert_equals(animation.id, 'anim', 'animation.id reflects the value set');
-}, 'Animation.id setter');
+}, 'Animation.id for CSS Animations');
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698