wpt.fyi icon indicating copy to clipboard operation
wpt.fyi copied to clipboard

Adding "firefox:pass" makes query stop finding results

Open gsnedders opened this issue 10 months ago • 0 comments

Having started looking with the query enumeratedevices, I tried changing the query to find things that Firefox passes, which would normally be achieved with the query enumeratedevices firefox:pass.

However, this surprisingly returns no results, despite the fact that obviously there are tests that Firefox passes in the first query.

The structured query goes from:

    {
        "exists": [
            {
                "pattern": "enumeratedevices"
            }
        ]
    }

To:

    {
        "exists": [
            {
                "pattern": "enumeratedevices"
            },
            {
                "product": "firefox",
                "status": "PASS"
            }
        ]
    }

This might just be a duplicate of #2898?

gsnedders avatar Dec 03 '24 19:12 gsnedders