summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/browser/heuristics/third_party/browser_Ebay.js
blob: db6047718fe5f15253ab07f7dcc935e84ec84b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* global add_heuristic_tests */

"use strict";

add_heuristic_tests(
  [
    {
      fixturePath: "Checkout_Payment_FR.html",
      expectedResult: [
        {
          default: {
            reason: "autocomplete",
          },
          fields: [
            { fieldName: "cc-number" },
            { fieldName: "cc-exp" },
            { fieldName: "cc-given-name" },
            { fieldName: "cc-family-name" },
          ],
        },
      ],
    },
  ],
  "fixtures/third_party/Ebay/"
)