mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:48:11 +00:00
LibWeb: Use WebIDL types where possible instead of C types
This commit is contained in:
parent
f1d6693990
commit
c41b359ca5
13 changed files with 32 additions and 24 deletions
|
@ -78,7 +78,7 @@ WebIDL::ExceptionOr<JS::Value> History::state() const
|
|||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/history.html#dom-history-go
|
||||
WebIDL::ExceptionOr<void> History::go(long delta = 0)
|
||||
WebIDL::ExceptionOr<void> History::go(WebIDL::Long delta = 0)
|
||||
{
|
||||
// 1. Let document be this's associated Document.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue