forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1366969 - fix some WPTs to not re-use the same 'valid once per se…
…ssion' auth landing, which incorrectly causes test-failures. r=annevk fix some WPTs to not re-use the same 'valid once per session' auth landing, which incorrectly causes test-failures. Differential Revision: https://phabricator.services.mozilla.com/D22878
- Loading branch information
1 parent
acb1e04
commit 72b34f3
Showing
5 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
6 changes: 0 additions & 6 deletions
6
testing/web-platform/meta/xhr/send-authentication-basic.htm.ini
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import imp | ||
import os | ||
|
||
here = os.path.split(os.path.abspath(__file__))[0] | ||
|
||
def main(request, response): | ||
auth = imp.load_source("", os.path.join(here, | ||
"..", | ||
"authentication.py")) | ||
return auth.main(request, response) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import imp | ||
import os | ||
|
||
here = os.path.split(os.path.abspath(__file__))[0] | ||
|
||
def main(request, response): | ||
auth = imp.load_source("", os.path.join(here, | ||
"..", | ||
"authentication.py")) | ||
return auth.main(request, response) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters