Bug 1840776 - [devtools] Fix inspector crash on ::highlight. r=devtools-reviewers,jdescottes.

This prevent the rule view crashing when `dom.customHighlightAPI.enabled` is set
to true.

Differential Revision: https://phabricator.services.mozilla.com/D182327
This commit is contained in:
Nicolas Chevobbe 2023-06-28 15:52:48 +00:00
Родитель 88b16d4346
Коммит b9bf1f716d
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -689,6 +689,9 @@ class PageStyleActor extends Actor {
case "::first-line":
case "::selection":
return true;
// We don't want the method to throw, but we don't handle those yet (See Bug 1840872)
case "::highlight":
return false;
case "::marker":
return this._nodeIsListItem(node);
case "::backdrop":