michael@0: /* Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ */ michael@0: michael@0: MARIONETTE_TIMEOUT = 60000; michael@0: MARIONETTE_HEAD_JS = 'head.js'; michael@0: michael@0: function test_call_mute() { michael@0: telephony.muted = true; michael@0: is(telephony.muted, true); michael@0: telephony.muted = false; michael@0: is(telephony.muted, false); michael@0: cleanUp(); michael@0: } michael@0: michael@0: function cleanUp() { michael@0: finish(); michael@0: } michael@0: michael@0: startTest(function() { michael@0: test_call_mute(); michael@0: });