Update wpt-tests metadata

This commit is contained in:
Utsav Oza 2020-05-14 19:55:37 +05:30
parent 55a3eb6bf4
commit 4c637e0601
7 changed files with 20 additions and 27 deletions

View file

@ -637,7 +637,7 @@ pub fn follow_hyperlink(subject: &Element, hyperlink_suffix: Option<String>) {
if let Some(suffix) = hyperlink_suffix {
href.push_str(&suffix);
}
let url = match document.url().join(&href) {
let url = match document.base_url().join(&href) {
Ok(url) => url,
Err(_) => return,
};