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

Side by Side Diff: LayoutTests/webexposed/element-animate.html

Issue 96283002: Web Animations API: Start implementation of Element.animate(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix nits Created 7 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/js-test.js"></script>
3 <script>
4 description("Check that Element.animate() is not available without experimental web platform features enabled. " +
5 "Expected to fail in LayoutTests/webexposed and pass in LayoutTests/virtual/ stable/webexposed.");
6
7 if ('animate' in Element.prototype)
8 testFailed("Element.animate() is exposed.");
9 else
10 testPassed("Element.animate() is not exposed.")
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698