diff --git a/Meta/import-wpt-test.py b/Meta/import-wpt-test.py index c971895c4c..901d8f0de4 100755 --- a/Meta/import-wpt-test.py +++ b/Meta/import-wpt-test.py @@ -83,7 +83,7 @@ class TestTypeIdentifier(HTMLParser): def handle_starttag(self, tag, attrs): if tag == "link": attr_dict = dict(attrs) - if attr_dict["rel"] == "match": + if attr_dict["rel"] == "match" or attr_dict["rel"] == "mismatch": self.test_type = TestType.REF self.reference_path = attr_dict["href"]