mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-10 13:54:27 +00:00
Backed out changesets ed1ef43ce9af, 3d2b3f7eac93, and 8fc6d7d32482 (bug 827831) for Marionette failures.
This commit is contained in:
parent
6f4b3c8301
commit
221487c0da
@ -118,14 +118,6 @@ dictionary MozStkInput
|
||||
*/
|
||||
DOMString text;
|
||||
|
||||
/**
|
||||
* The length of time for which the ME shall display the dialog. This field
|
||||
* is used only for GET INKEY.
|
||||
*
|
||||
* @see TS 11.14, clause 11.8, duration, GET INKEY T.C 27.22.4.2.8.4.2
|
||||
*/
|
||||
jsval duration;
|
||||
|
||||
/**
|
||||
* Minimum length of response.
|
||||
*/
|
||||
|
@ -130,15 +130,6 @@ function testTimerManagementGetCurrentValue(cmd) {
|
||||
runNextTest();
|
||||
}
|
||||
|
||||
function testGetInKeyVariableTimeout(cmd) {
|
||||
log("STK CMD " + JSON.stringify(cmd));
|
||||
is(cmd.typeOfCommand, icc.STK_CMD_GET_INKEY);
|
||||
is(cmd.duration.timeUnit, 0x01);
|
||||
is(cmd.duration.timeInterval, 0x0A);
|
||||
|
||||
runNextTest();
|
||||
}
|
||||
|
||||
function testSetupCall(cmd) {
|
||||
log("STK CMD " + JSON.stringify(cmd));
|
||||
is(cmd.typeOfCommand, icc.STK_CMD_SET_UP_CALL);
|
||||
@ -178,8 +169,6 @@ let tests = [
|
||||
func: testTimerManagementGetCurrentValue},
|
||||
{command: "d029810301100482028182050a446973636f6e6e6563748609811032042143651c2c05074d657373616765",
|
||||
func: testSetupCall},
|
||||
{command: "D0198103012200820281828D0A04456E74657220222B228402010A",
|
||||
func: testGetInKeyVariableTimeout},
|
||||
];
|
||||
|
||||
let pendingEmulatorCmdCount = 0;
|
||||
|
@ -7402,13 +7402,6 @@ let StkCommandParamsFactory = {
|
||||
}
|
||||
input.text = ctlv.value.textString;
|
||||
|
||||
// duration
|
||||
ctlv = StkProactiveCmdHelper.searchForTag(
|
||||
COMPREHENSIONTLV_TAG_DURATION, ctlvs);
|
||||
if (ctlv) {
|
||||
input.duration = ctlv.value;
|
||||
}
|
||||
|
||||
input.minLength = 1;
|
||||
input.maxLength = 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user