mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
fix(webkit): mark mixed content test as passing (#260)
* roll WebKit to 1042
This commit is contained in:
parent
974f82073f
commit
4a5929da55
@ -10,7 +10,7 @@
|
||||
"playwright": {
|
||||
"chromium_revision": "724623",
|
||||
"firefox_revision": "1007",
|
||||
"webkit_revision": "1038"
|
||||
"webkit_revision": "1042"
|
||||
},
|
||||
"scripts": {
|
||||
"unit": "node test/test.js",
|
||||
|
@ -43,7 +43,7 @@ module.exports.addTests = function({testRunner, expect, defaultBrowserOptions, p
|
||||
expect(error).toBe(null);
|
||||
expect(response.ok()).toBe(true);
|
||||
});
|
||||
it.skip(WEBKIT)('should work with mixed content', async({page, server, httpsServer}) => {
|
||||
it('should work with mixed content', async({page, server, httpsServer}) => {
|
||||
httpsServer.setRoute('/mixedcontent.html', (req, res) => {
|
||||
res.end(`<iframe src=${server.EMPTY_PAGE}></iframe>`);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user