Bug 1617608 - Allow toggling :focus-visible from inspector. r=rcaliman

Differential Revision: https://phabricator.services.mozilla.com/D97164
This commit is contained in:
Emilio Cobos Álvarez 2020-11-20 16:24:37 +00:00
Родитель cee5bf40eb
Коммит 559823cc19
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -26,6 +26,9 @@ const TEST_URI = `
div:visited {
color: orange;
}
div:focus-visible {
color: wheat;
}
</style>
<div>test div</div>
`;

Просмотреть файл

@ -32,6 +32,7 @@ exports.PSEUDO_CLASSES = [
":hover",
":active",
":focus",
":focus-visible",
":focus-within",
":visited",
];