/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/HTMLMapElement.webidl
12 строк
460 B
Andrei Volykhin
html: Add the 'name' and 'areas' IDL attributes for <map> (#40133)
24 окт 2025, 17:19
Не верифицирован
24 окт 2025, 17:19
45ed17d
Код
Авторство
О чём код?
/* 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/. */ // https://html.spec.whatwg.org/multipage/#htmlmapelement [Exposed=Window] interface HTMLMapElement : HTMLElement { [HTMLConstructor] constructor(); [CEReactions] attribute DOMString name; [SameObject] readonly attribute HTMLCollection areas; };