Index: third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-close-basic.html |
diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-close-basic.html b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-close-basic.html |
index 2474fd807e2038711c7ca7c8242b66feca4ab36d..9f62c66ce61bae3c28f00169b4d3eccbfa379fa2 100644 |
--- a/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-close-basic.html |
+++ b/third_party/WebKit/LayoutTests/webaudio/AudioContext/audiocontext-close-basic.html |
@@ -1,17 +1,18 @@ |
-<!doctype html> |
+<!DOCTYPE html> |
<html> |
<head> |
- <title>Test AudioContext.close() closes many contexts</title> |
+ <title> |
+ Test AudioContext.close() closes many contexts |
+ </title> |
<script src="../../resources/testharness.js"></script> |
<script src="../../resources/testharnessreport.js"></script> |
<script src="../resources/audit-util.js"></script> |
<script src="../resources/audit.js"></script> |
</head> |
- |
<body> |
- <script> |
+ <script id="layout-test-code"> |
let audit = Audit.createTaskRunner(); |
- |
+ |
let context = null; |
// The number of contexts we want to create and close. |
@@ -21,44 +22,49 @@ |
function createContextAndClose(task, should) { |
// Bypass the first iteration. |
if (context) { |
- should(context.state, "context.state for closed context " + counter) |
- .beEqualTo("closed"); |
+ should(context.state, 'context.state for closed context ' + counter) |
+ .beEqualTo('closed'); |
context = null; |
} |
// Create new context and close. |
context = new AudioContext(); |
if (counter++ < MAX_ITERATION) { |
// Recursive promise resolution. |
- context.close().then(function () { |
- createContextAndClose(task, should); |
- }, function () { |
- onFailure(should); |
- task.done(); |
- }); |
+ context.close().then( |
+ function() { |
+ createContextAndClose(task, should); |
+ }, |
+ function() { |
+ onFailure(should); |
+ task.done(); |
+ }); |
} else { |
- context.close() |
- .then(function () { |
- // |counter| is one more than MAX_ITERATION if we |
- // succeeded. |
- should(counter - 1, |
- "Number of contexts successfully created and closed") |
+ context.close().then(function() { |
+ // |counter| is one more than MAX_ITERATION if we |
+ // succeeded. |
+ should( |
+ counter - 1, |
+ 'Number of contexts successfully created and closed') |
.beEqualTo(MAX_ITERATION); |
- task.done(); |
- }); |
+ task.done(); |
+ }); |
} |
} |
function onFailure(should) { |
- should(context.state, "Context " + counter + "failed to close") |
- .beEqualTo("closed"); |
+ should(context.state, 'Context ' + counter + 'failed to close') |
+ .beEqualTo('closed'); |
} |
- audit.define({ |
- label: "test", |
- description: "Test that closing a context releases the audio HW context" |
- }, function (task, should) { |
- createContextAndClose(task, should); |
- }); |
+ audit.define( |
+ { |
+ label: 'test', |
+ description: |
+ 'Test that closing a context releases the audio HW context' |
+ }, |
+ function(task, should) { |
+ createContextAndClose(task, should); |
+ }); |
audit.run(); |
</script> |