mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
LibWeb: Use correct IDL for HTTPFormElement's method attribute
Removed the custom getter and updated the idl so that the attribute is Reflected and Enumerated.
This commit is contained in:
parent
ebe89a3207
commit
6892482755
Notes:
github-actions[bot]
2024-10-21 21:42:12 +00:00
Author: https://github.com/samu698
Commit: 6892482755
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1884
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/BodilessSleeper
Reviewed-by: https://github.com/stelar7
Reviewed-by: https://github.com/tcl3
5 changed files with 83 additions and 19 deletions
51
Tests/LibWeb/Text/expected/form-method-attribute.txt
Normal file
51
Tests/LibWeb/Text/expected/form-method-attribute.txt
Normal file
|
@ -0,0 +1,51 @@
|
|||
form: unset
|
||||
form.getAttribute('method') == 'null'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', '')
|
||||
form.getAttribute('method') == ''
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'undefined')
|
||||
form.getAttribute('method') == 'undefined'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'null')
|
||||
form.getAttribute('method') == 'null'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'get')
|
||||
form.getAttribute('method') == 'get'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'post')
|
||||
form.getAttribute('method') == 'post'
|
||||
form.method == 'post'
|
||||
|
||||
form.setAttribute('method', 'dialog')
|
||||
form.getAttribute('method') == 'dialog'
|
||||
form.method == 'dialog'
|
||||
|
||||
form.setAttribute('method', 'GeT')
|
||||
form.getAttribute('method') == 'GeT'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'POST')
|
||||
form.getAttribute('method') == 'POST'
|
||||
form.method == 'post'
|
||||
|
||||
form.setAttribute('method', 'DIAlog')
|
||||
form.getAttribute('method') == 'DIAlog'
|
||||
form.method == 'dialog'
|
||||
|
||||
form.setAttribute('method', 'foo')
|
||||
form.getAttribute('method') == 'foo'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', 'xpost')
|
||||
form.getAttribute('method') == 'xpost'
|
||||
form.method == 'get'
|
||||
|
||||
form.setAttribute('method', '5%')
|
||||
form.getAttribute('method') == '5%'
|
||||
form.method == 'get'
|
Loading…
Add table
Add a link
Reference in a new issue