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

Side by Side Diff: LayoutTests/webexposed/web-animations-api.html

Issue 152853003: Web Animations API: Bindings for TimedItem.specified with readonly attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix timed-item-specified-getters.html (mashed in rebase) Created 6 years, 10 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../resources/testharnessreport.js"></script>
4 <script> 4 <script>
5 test(function() { 5 test(function() {
6 assert_false('animate' in Element.prototype); 6 assert_false('animate' in Element.prototype);
7 }, 'Element.animate() should not be exposed without experimental web platform fe atures enabled.\nThis test is expected to fail in LayouTests/webexposed.'); 7 }, 'Element.animate() should not be exposed without experimental web platform fe atures enabled.\nThis test is expected to fail in LayouTests/webexposed.');
8 8
9 test(function() { 9 test(function() {
10 assert_false('Animation' in window); 10 assert_false('Animation' in window);
11 },'Animation constructor should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.'); 11 },'Animation constructor should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
12 12
13 test(function() { 13 test(function() {
14 assert_false('Timeline' in window); 14 assert_false('Timeline' in window);
15 },'DocumentTimeline should not be exposed without experimental web platform feat ures enabled.\nThis test is expected to fail in LayouTests/webexposed.'); 15 },'Timeline should not be exposed without experimental web platform features ena bled.\nThis test is expected to fail in LayouTests/webexposed.');
16 16
17 test(function() { 17 test(function() {
18 assert_false('timeline' in document); 18 assert_false('timeline' in document);
19 },'document.timeline should not be exposed without experimental web platform fea tures enabled.\nThis test is expected to fail in LayouTests/webexposed.'); 19 },'document.timeline should not be exposed without experimental web platform fea tures enabled.\nThis test is expected to fail in LayouTests/webexposed.');
20
21 test(function() {
22 assert_false('Timing' in window);
23 },'Timing should not be exposed without experimental web platform features enabl ed.\nThis test is expected to fail in LayouTests/webexposed.');
24
25 test(function() {
26 assert_false('TimedItem' in window);
27 },'TimedItem should not be exposed without experimental web platform features en abled.\nThis test is expected to fail in LayouTests/webexposed.');
20 </script> 28 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698