OLD | NEW |
(Empty) | |
| 1 This is a testharness.js-based test. |
| 2 FAIL getUserMedia({doesnotexist:true}) aborts with NOT_SUPPORTED_ERR assert_thro
ws: function "function () { |
| 3 navigator.getUserMedia( |
| 4 {doesnotexist:true}, |
| 5 t.step_func(function (stream) { |
| 6 assert_unreached("This should never be triggered since the constra
ints parameter is unrecognized"); |
| 7 }), t.step_func(function (error) { |
| 8 assert_unreached("This should never be triggered since the constra
ints parameter is unrecognized"); |
| 9 })); |
| 10 }" threw object "ReferenceError: t is not defined" that is not a DOMExcept
ion NOT_SUPPORTED_ERR: property "code" is equal to undefined, expected 9 |
| 11 Harness: the test ran to completion. |
| 12 |
OLD | NEW |