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

Unified Diff: chrome/test/data/extensions/api_test/tabs/basics/muted.js

Issue 987583004: Add audible, muted to Tab, c.t.query, c.t.update, and c.t.onUpdated where relevant (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch1
Patch Set: rebase Created 5 years, 5 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
Index: chrome/test/data/extensions/api_test/tabs/basics/muted.js
diff --git a/chrome/test/data/extensions/api_test/tabs/basics/muted.js b/chrome/test/data/extensions/api_test/tabs/basics/muted.js
new file mode 100644
index 0000000000000000000000000000000000000000..6487325f95811273a99361c1bd3ae46b0da954c8
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/tabs/basics/muted.js
@@ -0,0 +1,46 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+var testTabId_;
+
+chrome.test.runTests([
+ function setupWindow() {
+ chrome.tabs.getCurrent(pass(function(tab) {
+ testTabId_ = tab.id;
+ }));
+ },
+
+ function mutedStartsFalse() {
+ chrome.tabs.get(testTabId_, pass(function(tab) {
+ assertEq(false, tab.muted);
+
+ queryForTab(testTabId_, {muted: false}, pass(function(tab) {
+ assertEq(false, tab.muted);
+ }));
+ queryForTab(testTabId_, {muted: true} , pass(function(tab) {
+ assertEq(null, tab);
+ }));
+ }));
+ },
+
+ function makeMuted() {
+ onUpdatedExpect("muted", true, {mutedCause: chrome.runtime.id});
+ chrome.tabs.update(testTabId_, {muted: true}, pass());
+ },
+
+ function testStaysMutedAfterChangingWindow() {
+ chrome.windows.create({}, pass(function(window)
+ {
+ chrome.tabs.move(testTabId_, {windowId: window.id, index: -1},
+ pass(function(tab) {
+ assertEq(true, tab.muted);
+ }));
+ }));
+ },
+
+ function makeNotMuted() {
+ onUpdatedExpect("muted", false, {mutedCause: chrome.runtime.id});
+ chrome.tabs.update(testTabId_, {muted: false}, pass());
+ }
+]);

Powered by Google App Engine
This is Rietveld 408576698