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:
bors-servo 2020-02-24 21:18:10 -05:00 committed by GitHub
commit 145c89a2d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 252 additions and 3303 deletions

6
Cargo.lock generated
View file

@ -4784,6 +4784,7 @@ dependencies = [
"tendril",
"time",
"tinyfiledialogs",
"unicode-bidi",
"unicode-segmentation",
"url",
"utf-8",
@ -6292,13 +6293,12 @@ dependencies = [
[[package]]
name = "unicode-bidi"
version = "0.3.3"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a2c4e3710edd365cd7e78383153ed739fa31af19f9172f72d3575060f5a43a"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
dependencies = [
"matches",
"serde",
"serde_derive",
]
[[package]]