mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
1af8b37a0f
* New type system * Fixed dot notation for HTML elements
34 lines
738 B
Go
34 lines
738 B
Go
package html
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// ScrollTop scrolls the document's window to its bottom.
|
|
// @param doc (HTMLDocument) - Target document.
|
|
func ScrollBottom(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 1, 1)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
err = core.ValidateType(args[0], types.HTMLDocument)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
doc, ok := args[0].(values.DHTMLDocument)
|
|
|
|
if !ok {
|
|
return values.None, core.Errors(core.ErrInvalidType, ErrNotDynamic)
|
|
}
|
|
|
|
return values.None, doc.ScrollBottom()
|
|
}
|