mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Auto merge of #25499 - NeverHappened:implement-form-dirname, r=jdm
Implement dirname support for form element Added support for dirname in input on form submit Added Dir getter / setter for HTMLElement NOT YET Added get directionality according to https://html.spec.whatwg.org/multipage/dom.html#the-directionality - [X] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #25379 (GitHub issue number if applicable)
This commit is contained in:
commit
145c89a2d4
27 changed files with 252 additions and 3303 deletions
|
@ -14,8 +14,8 @@ interface HTMLElement : Element {
|
|||
attribute DOMString lang;
|
||||
[CEReactions]
|
||||
attribute boolean translate;
|
||||
// [CEReactions]
|
||||
// attribute DOMString dir;
|
||||
[CEReactions]
|
||||
attribute DOMString dir;
|
||||
readonly attribute DOMStringMap dataset;
|
||||
|
||||
// microdata
|
||||
|
|
|
@ -13,8 +13,8 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||
// attribute boolean autofocus;
|
||||
[CEReactions, SetterThrows]
|
||||
attribute unsigned long cols;
|
||||
// [CEReactions]
|
||||
// attribute DOMString dirName;
|
||||
[CEReactions]
|
||||
attribute DOMString dirName;
|
||||
[CEReactions]
|
||||
attribute boolean disabled;
|
||||
readonly attribute HTMLFormElement? form;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue