1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:27:43 +00:00

LibWeb: Implement location.assign

This commit is contained in:
Luke Wilde 2023-05-15 20:11:38 +01:00 committed by Andreas Kling
parent baeee0effe
commit 00493687f2
3 changed files with 25 additions and 1 deletions

View file

@ -11,7 +11,7 @@ interface Location { // but see also additional creation steps and overridden in
[LegacyUnforgeable] attribute USVString search;
[LegacyUnforgeable] attribute USVString hash;
// TODO: [LegacyUnforgeable] undefined assign(USVString url);
[LegacyUnforgeable] undefined assign(USVString url);
[LegacyUnforgeable] undefined replace(USVString url);
[LegacyUnforgeable] undefined reload();