Skip to content

Commit

Permalink
Bug 1322505 followup, delint
Browse files Browse the repository at this point in the history
--HG--
extra : rebase_source : 3856945327b76aad65a8de9cf990a90be88b4bbc
  • Loading branch information
philor committed Jan 20, 2017
1 parent f7243c7 commit 49d7c91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var SuspendedType = {
};

function check_audio_suspended(suspendedType) {
var audio = content.document.getElementById('testAudio');
var audio = content.document.getElementById("testAudio");
if (!audio) {
ok(false, "Can't get the audio element!");
}
Expand All @@ -19,7 +19,7 @@ function check_audio_suspended(suspendedType) {
}

function check_audio_pause_state(expectPause) {
var audio = content.document.getElementById('testAudio');
var audio = content.document.getElementById("testAudio");
if (!audio) {
ok(false, "Can't get the audio element!");
}
Expand Down
2 changes: 1 addition & 1 deletion toolkit/content/tests/browser/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ function* waitForTabBlockEvent(tab, expectBlocked) {
return false;
});
}
}
}

0 comments on commit 49d7c91

Please sign in to comment.