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:
samu698 2024-10-20 18:24:24 +02:00 committed by Andrew Kaster
commit 6892482755
Notes: github-actions[bot] 2024-10-21 21:42:12 +00:00
5 changed files with 83 additions and 19 deletions

View file

@ -0,0 +1,23 @@
<script src="./include.js"></script>
<script>
test(() => {
const form = document.createElement('form');
const values = [
'', undefined, null,
'get', 'post', 'dialog',
'GeT', 'POST', 'DIAlog',
'foo', 'xpost', '5%'
];
println('form: unset');
println(`form.getAttribute('method') == '${form.getAttribute('method')}'`);
println(`form.method == '${form.method}'`);
for (value of values) {
form.setAttribute('method', value);
println('');
println(`form.setAttribute('method', '${value}')`);
println(`form.getAttribute('method') == '${form.getAttribute('method')}'`);
println(`form.method == '${form.method}'`);
}
});
</script>