Function: xwidget-webkit-scroll-down-line

xwidget-webkit-scroll-down-line is an interactive and byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-webkit-scroll-down-line &optional N)

Documentation

Scroll webkit down by N lines.

The height of line is calculated with window-font-height. Stop if the top edge of the page is reached. If N is omitted or nil, scroll down by one line.

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-scroll-down-line (&optional n)
  "Scroll webkit down by N lines.
The height of line is calculated with `window-font-height'.
Stop if the top edge of the page is reached.
If N is omitted or nil, scroll down by one line."
  (interactive "p" xwidget-webkit-mode)
  (xwidget-webkit-scroll-down (* n (window-font-height))))