mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-29 05:38:24 +00:00
LibWeb: Implement HTMLInputElement.formAction
This commit is contained in:
parent
c25dda767e
commit
33c62be7f9
Notes:
github-actions[bot]
2024-09-08 07:48:46 +00:00
Author: https://github.com/tcl3
Commit: 33c62be7f9
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1321
3 changed files with 7 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<script src="../include.js"></script>
|
||||
<button formaction="http://www.example.com/"></button>
|
||||
<input formaction="http://www.example.com/">
|
||||
<script>
|
||||
test(() => {
|
||||
const elementNames = [
|
||||
"button",
|
||||
"input",
|
||||
];
|
||||
for (const elementName of elementNames) {
|
||||
const element = document.querySelector(elementName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue