/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/PerformanceMark.webidl
13 строк
506 B
Shubham Gupta
script: Implement `PerformanceMark` constructor (#44702)
04 май 2026, 11:30
Не верифицирован
04 май 2026, 11:30
1d6ad47
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at https://mozilla.org/MPL/2.0/. * * The origin of this IDL file is * https://w3c.github.io/user-timing/#performancemark */ [Exposed=(Window,Worker)] interface PerformanceMark : PerformanceEntry { [Throws] constructor(DOMString markName, optional PerformanceMarkOptions markOptions = {}); readonly attribute any detail; };