mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09:00
LibWeb: Add URL reflection to obsolete HTMLImageElement lowsrc property
This commit is contained in:
parent
1369fc5069
commit
f2034270f1
Notes:
github-actions[bot]
2024-08-17 16:32:07 +00:00
Author: https://github.com/bplaat
Commit: f2034270f1
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1099
Reviewed-by: https://github.com/tcl3 ✅
3 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,8 @@ frame.src final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
|||
iframe.longDesc final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
iframe.src final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
img.src final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
img.longDesc final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
img.lowsrc final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
link.href final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
object.codeBase final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
object.data final URL path segment: %EF%BF%BDa%EF%BF%BDb%EF%BF%BD
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
{ "iframe": "longDesc" },
|
||||
{ "iframe": "src" },
|
||||
{ "img": "src" },
|
||||
{ "img": "longDesc" },
|
||||
{ "img": "lowsrc" },
|
||||
{ "link": "href" },
|
||||
{ "object": "codeBase" },
|
||||
{ "object": "data" },
|
||||
|
|
|
@ -30,7 +30,7 @@ interface HTMLImageElement : HTMLElement {
|
|||
|
||||
// Obsolete
|
||||
[CEReactions, Reflect] attribute DOMString name;
|
||||
[CEReactions, Reflect] attribute USVString lowsrc;
|
||||
[CEReactions, Reflect, URL] attribute USVString lowsrc;
|
||||
[CEReactions, Reflect] attribute DOMString align;
|
||||
[CEReactions, Reflect] attribute unsigned long hspace;
|
||||
[CEReactions, Reflect] attribute unsigned long vspace;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue