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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBuffer/audiobuffer-getChannelData-expected.txt

Issue 2593083002: Convert AudioBuffer Audit tests to testharness (Closed)
Patch Set: Rebase Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/AudioBuffer/audiobuffer-getChannelData.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Test AudioBuffer.getChannelData() Returns the Same Object
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS a = buffer.getChannelData(0)
7 PASS b = buffer.getChannelData(0)
8 PASS a === b is true
9 PASS a = buffer.getChannelData(1)
10 PASS b = buffer.getChannelData(1)
11 PASS a === b is true
12 PASS getChannelData correctly returned the same buffer.
13
14 PASS a = buffer1.getChannelData(0)
15 PASS b = buffer2.getChannelData(0)
16 PASS a === b is false
17 PASS a = buffer1.getChannelData(1)
18 PASS b = buffer2.getChannelData(1)
19 PASS a === b is false
20 PASS getChannelData correctly returned different buffers.
21
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/AudioBuffer/audiobuffer-getChannelData.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698