fix(webkit): mark mixed content test as passing

This commit is contained in:
Yury Semikhatsky 2019-12-16 14:12:17 -08:00
parent 974f82073f
commit 034f56a205
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
"playwright": {
"chromium_revision": "724623",
"firefox_revision": "1007",
"webkit_revision": "1038"
"webkit_revision": "1041"
},
"scripts": {
"unit": "node test/test.js",

View file

@ -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>`);
});