| Index: third_party/WebKit/LayoutTests/webaudio/baseaudiocontext-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/baseaudiocontext-properties.html b/third_party/WebKit/LayoutTests/webaudio/baseaudiocontext-properties.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0f2eb6bd32181415ed94138077a70398f2ed8a8c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/baseaudiocontext-properties.html
|
| @@ -0,0 +1,28 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <title>Testing BaseAudioContext properties</title>
|
| + <script src="../resources/testharness.js"></script>
|
| + <script src="../resources/testharnessreport.js"></script>
|
| + <script src="resources/audio-testing.js"></script>
|
| + <script src="resources/context-properties.js"></script>
|
| +</head>
|
| +<body>
|
| + <script>
|
| + var audit = Audit.createTaskRunner();
|
| +
|
| +
|
| + // Cross-checking two sets of properties: a programmatically generated set
|
| + // and a pre-populated set.
|
| + audit.defineTask('crosschecking-properties', function (taskDone) {
|
| + verifyPrototypeOwnProperties(BaseAudioContext.prototype,
|
| + BaseAudioContextOwnProperties,
|
| + Should);
|
| + taskDone();
|
| + });
|
| +
|
| +
|
| + audit.runTasks();
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|