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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/animation-timeline/idlharness.html

Issue 1866333004: Import web-platform-tests@5a8700479d98852455bee6117558897867eb278a (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wpt-sync
Patch Set: Add Failure option for two TestExpectations entries Created 4 years, 8 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
(Empty)
1 <!doctype html>
2 <meta charset=utf-8>
3 <title>Web Animations API: DocumentTimeline tests</title>
4 <script src="../../../../resources/testharness.js"></script>
5 <script src="../../../../resources/testharnessreport.js"></script>
6 <script src="../../../../resources/WebIDLParser.js"></script>
7 <script src="../../../../resources/idlharness.js"></script>
8 <div id="log"></div>
9 <script type="text/plain" id="DocumentTimeline-IDL">
10 interface AnimationTimeline {
11 readonly attribute double? currentTime;
12 };
13
14 interface DocumentTimeline : AnimationTimeline {
15 };
16 </script>
17 <script>
18 'use strict';
19
20 var idlArray;
21 test(function() {
22 idlArray = new IdlArray();
23 idlArray.add_idls(
24 document.getElementById('DocumentTimeline-IDL').textContent);
25 idlArray.add_objects( { DocumentTimeline: ['document.timeline'] } );
26 });
27 idlArray.test();
28
29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698