| 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..1a0938606338a3fcdec98e882ae8b8b9dd443205
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/baseaudiocontext-properties.html
|
| @@ -0,0 +1,31 @@
|
| +<!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();
|
| +
|
| +
|
| + // Check all the property belongs to the BaseAudioContext prototype.
|
| + audit.defineTask('baseaudiocontext-properties', function (taskDone) {
|
| +
|
| + checkContextProperties({
|
| + targetPrototype: BaseAudioContext.prototype,
|
| + targetDescription: 'BaseAudioContext.prototype',
|
| + propertyDict: BaseAudioContextOwnProperties
|
| + }, Should);
|
| +
|
| + taskDone();
|
| + });
|
| +
|
| +
|
| + audit.runTasks();
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|