Skip to content

Commit

Permalink
Backed out changeset 8077cd932f28 (bug 1687681) for causing build bus…
Browse files Browse the repository at this point in the history
…tages. CLOSED TREE
  • Loading branch information
CosminSabou committed Aug 17, 2021
1 parent 3a5bf57 commit 4320d75
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 393 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -970,13 +970,6 @@ const TESTCASES = [
],
expectedOptionElements: [],
},
{
description: "Fill a cc-exp without placeholder on the cc-exp field",
document: `<form><input autocomplete="cc-number">
<input autocomplete="cc-exp"></form>`,
profileData: [Object.assign({}, DEFAULT_CREDITCARD_RECORD)],
expectedResult: [Object.assign({}, DEFAULT_CREDITCARD_RECORD)],
},
{
description: "Use placeholder to adjust cc-exp format [mm/yy].",
document: `<form><input autocomplete="cc-number">
Expand Down Expand Up @@ -1043,6 +1036,17 @@ const TESTCASES = [
}),
],
},
{
description: "Use placeholder to adjust cc-exp format [yyy-mm].",
document: `<form><input autocomplete="cc-number">
<input placeholder="yyy-mm" autocomplete="cc-exp"></form>`,
profileData: [Object.assign({}, DEFAULT_CREDITCARD_RECORD)],
expectedResult: [
Object.assign({}, DEFAULT_CREDITCARD_RECORD, {
"cc-exp": "025-01",
}),
],
},
{
description: "Use placeholder to adjust cc-exp format [mmm yyyy].",
document: `<form><input autocomplete="cc-number">
Expand Down

This file was deleted.

Loading

0 comments on commit 4320d75

Please sign in to comment.