forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more tests for cross-origin WebBundles
A follow-up to https://crrev.com/c/2617167. Note that the test fails in the current implementation. See the https://crbug.com/1168449 for details. The test is now marked as Timeout. Bug: 1149816, 1168449 Change-Id: I2552f64ea12ac5030c9740f30a94edef2760986c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2639337 Reviewed-by: Tsuyoshi Horo <[email protected]> Commit-Queue: Hayato Ito <[email protected]> Cr-Commit-Position: refs/heads/master@{#845498}
- Loading branch information
1 parent
c71b45a
commit 72aeb6e
Showing
4 changed files
with
90 additions
and
9 deletions.
There are no files selected for viewing
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,48 @@ | ||
{ | ||
"log": { | ||
"entries": [ | ||
{ | ||
"request": { | ||
"method": "GET", | ||
"url": "https://web-platform.test:8444/web-bundle/resources/wbn/no-cors/resource.cors.json", | ||
"headers": [] | ||
}, | ||
"response": { | ||
"status": 200, | ||
"headers": [ | ||
{ | ||
"name": "Content-type", | ||
"value": "application/json" | ||
}, | ||
{ | ||
"name": "Access-Control-Allow-Origin", | ||
"value": "*" | ||
} | ||
], | ||
"content": { | ||
"text": "{ cors: 1 }" | ||
} | ||
} | ||
}, | ||
{ | ||
"request": { | ||
"method": "GET", | ||
"url": "https://web-platform.test:8444/web-bundle/resources/wbn/no-cors/resource.no-cors.json", | ||
"headers": [] | ||
}, | ||
"response": { | ||
"status": 200, | ||
"headers": [ | ||
{ | ||
"name": "Content-type", | ||
"value": "application/json" | ||
} | ||
], | ||
"content": { | ||
"text": "{ no_cors: 1 }" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |
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
Binary file not shown.
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