mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 09:12:13 -05: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: https://github.com/LadybirdBrowser/ladybird/commit/e5436ce5935 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
|
||||
struct ErrorEventInit : public DOM::EventInit {
|
||||
String message;
|
||||
String filename; // FIXME: This should be a USVString.
|
||||
String filename;
|
||||
u32 lineno { 0 };
|
||||
u32 colno { 0 };
|
||||
JS::Value error { JS::js_null() };
|
||||
|
|
Loading…
Reference in a new issue