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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/offlineaudiocontext-properties.html

Issue 2386303002: Expose BaseAudioContext prototype (Closed)
Patch Set: Removes old context property test 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Testing OfflineAudioContext properties</title>
5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script>
7 <script src="resources/audio-testing.js"></script>
8 <script src="resources/context-properties.js"></script>
9 </head>
10 <body>
11 <script>
12 var audit = Audit.createTaskRunner();
13
14
15 // Check all the property belongs to the OfflineAudioContext prototype.
16 audit.defineTask('offlineaudiocontext-properties', function (taskDone) {
17
18 checkContextProperties({
19 targetPrototype: OfflineAudioContext.prototype,
20 targetDescription: 'OfflineAudioContext.prototype',
21 propertyDict: OfflineAudioContextOwnProperties
22 }, Should);
23
24 taskDone();
25 });
26
27
28 audit.runTasks();
29 </script>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698