mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/HTML: Implement cite attribute according to spec
Implements the cite attribute of `q`, `blockqoute`, `ins` and `del` elements according to spec by returning a valid URL.
This commit is contained in:
parent
2f51e9a98e
commit
74645facae
Notes:
github-actions[bot]
2024-11-26 11:41:48 +00:00
Author: https://github.com/skyz1
Commit: 74645facae
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2576
Reviewed-by: https://github.com/tcl3 ✅
4 changed files with 10 additions and 2 deletions
|
@ -19,6 +19,10 @@
|
|||
{ "source": "src" },
|
||||
{ "track": "src" },
|
||||
{ "video": "src" },
|
||||
{ "q": "cite" },
|
||||
{ "blockquote": "cite" },
|
||||
{ "ins": "cite" },
|
||||
{ "del": "cite" },
|
||||
];
|
||||
for (const elementDescriptor of elementList) {
|
||||
[elementName, propertyName] = Object.entries(elementDescriptor)[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue