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

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

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 3 years, 12 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 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

Powered by Google App Engine
This is Rietveld 408576698