1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/html/scroll_top.go

28 lines
580 B
Go
Raw Normal View History

2018-11-15 21:33:53 +02:00
package html
import (
"context"
"github.com/MontFerret/ferret/pkg/drivers"
2018-11-15 21:33:53 +02:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
// ScrollTop scrolls the document's window to its top.
// @param doc (HTMLDocument) - Target document.
func ScrollTop(ctx context.Context, args ...core.Value) (core.Value, error) {
2018-11-15 21:33:53 +02:00
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.None, err
}
doc, err := drivers.ToDocument(args[0])
2018-11-15 21:33:53 +02:00
if err != nil {
return values.None, err
2018-11-15 21:33:53 +02:00
}
return values.None, doc.ScrollTop(ctx)
2018-11-15 21:33:53 +02:00
}