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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/audiocontext-getoutputtimestamp.html

Issue 2639643002: Move audiocontext-getoutputtimestamp test to AudioContext (Closed)
Patch Set: Convert to new Audit 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-getoutputtimestamp.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webaudio/audiocontext-getoutputtimestamp.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/audiocontext-getoutputtimestamp.html b/third_party/WebKit/LayoutTests/webaudio/audiocontext-getoutputtimestamp.html
deleted file mode 100644
index 905d74b3be19442d68c50e5e3623992430463716..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/audiocontext-getoutputtimestamp.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Testing AudioContext.getOutputTimestamp() method</title>
- <script src="../resources/testharness.js"></script>
- <script src="../resources/testharnessreport.js"></script>
- <script src="resources/audio-testing.js"></script>
-</head>
-<body>
- <script>
- var audit = Audit.createTaskRunner();
-
- audit.defineTask('getoutputtimestamp-initial-values', function (taskDone) {
- let context = new AudioContext;
- let timestamp = context.getOutputTimestamp();
-
- Should('timestamp.contextTime', timestamp.contextTime).exist();
- Should('timestamp.performanceTime', timestamp.performanceTime).exist();
-
- Should('timestamp.contextTime', timestamp.contextTime).beEqualTo(0);
- Should('timestamp.performanceTime', timestamp.performanceTime).beEqualTo(0);
-
- taskDone();
- });
-
- audit.runTasks();
- </script>
-</body>
-</html>
« no previous file with comments | « third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-getoutputtimestamp.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698