Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / test_bug408412.js
blob06321a6f876bc97c4e93e52a64bea20053a9a2d9
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4  
5 function run_test() {
6   try {
7     ChromeUtils.import("resource://test/syntax_error.jsm");
8     do_throw("Failed to report any error at all");
9   } catch (e) {
10     Assert.notEqual(/^SyntaxError:/.exec(e + ''), null);
11   }