mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 08:39:22 +00:00
LibWeb/HTML: Remove uneeded FIXME about use of USVString
An AK::String works fine for a USVString as a USVString is just a more strict version of DOMString. Maybe we will have a different String type for it in the future, but for now using an AK::String is fine and we do not need this FIXME.
This commit is contained in:
parent
a5bdc56063
commit
e5436ce593
Notes:
github-actions[bot]
2024-12-16 13:03:58 +00:00
Author: https://github.com/shannonbooth
Commit: e5436ce593
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2920
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ namespace Web::HTML {
|
||||||
// https://html.spec.whatwg.org/multipage/webappapis.html#erroreventinit
|
// https://html.spec.whatwg.org/multipage/webappapis.html#erroreventinit
|
||||||
struct ErrorEventInit : public DOM::EventInit {
|
struct ErrorEventInit : public DOM::EventInit {
|
||||||
String message;
|
String message;
|
||||||
String filename; // FIXME: This should be a USVString.
|
String filename;
|
||||||
u32 lineno { 0 };
|
u32 lineno { 0 };
|
||||||
u32 colno { 0 };
|
u32 colno { 0 };
|
||||||
JS::Value error { JS::js_null() };
|
JS::Value error { JS::js_null() };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue