Update referrer computation

Update unit tests for determine_requests_referrer

Update wpt metadata

Add missing spec links
This commit is contained in:
Utsav Oza 2020-06-28 14:45:38 +05:30
parent 83b2f0de0b
commit 310821d3b0
26 changed files with 229 additions and 585 deletions

View file

@ -2370,10 +2370,10 @@ impl GlobalScope {
}
// Substep 3.1.4
return Referrer::Client(url);
Referrer::Client(url)
} else {
// Substep 3.2
return Referrer::Client(self.get_url());
Referrer::Client(self.get_url())
}
}