servo: Merge #11632 - Implement URL.domainToUnicode (from achals:master); r=KiChjang

Fixes #11629

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #11629  (github issue number if applicable).

<!-- Either: -->
- [X] There are tests for these changes: Some expected test failures have been removed.

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

Source-Repo: https://github.com/servo/servo
Source-Revision: 21687b0f30dc6ebcfe1b1a499e978bf356f4698b
This commit is contained in:
Achal Shah 2016-06-06 13:03:57 -05:00
Родитель e505d3bbfc
Коммит b6b41cd183
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -13,6 +13,7 @@ use dom::urlhelper::UrlHelper;
use dom::urlsearchparams::URLSearchParams; use dom::urlsearchparams::URLSearchParams;
use std::borrow::ToOwned; use std::borrow::ToOwned;
use std::default::Default; use std::default::Default;
use url::quirks::domain_to_unicode;
use url::{Host, Url}; use url::{Host, Url};
// https://url.spec.whatwg.org/#url // https://url.spec.whatwg.org/#url
@ -100,6 +101,10 @@ impl URL {
USVString("".to_owned()) USVString("".to_owned())
} }
} }
pub fn DomainToUnicode(_: GlobalRef, origin: USVString) -> USVString {
USVString(domain_to_unicode(&origin.0))
}
} }
impl URLMethods for URL { impl URLMethods for URL {

Просмотреть файл

@ -7,7 +7,7 @@
Exposed=(Window,Worker)*/] Exposed=(Window,Worker)*/]
interface URL { interface URL {
static USVString domainToASCII(USVString domain); static USVString domainToASCII(USVString domain);
// static USVString domainToUnicode(USVString domain); static USVString domainToUnicode(USVString domain);
[SetterThrows] [SetterThrows]
/*stringifier*/ attribute USVString href; /*stringifier*/ attribute USVString href;