Skip to content

Commit

Permalink
Fix SiteIsolation.MainFrameWithTwoIFramesInTheSameProcess API test af…
Browse files Browse the repository at this point in the history
…ter 265971@main

https://bugs.webkit.org/show_bug.cgi?id=259136
rdar://112118497

Unreviewed.

In my frenzy of copying and pasting, I inadvertently changed the test expectations.
This reverts that one line change.

* Tools/TestWebKitAPI/Tests/WebKitCocoa/SiteIsolation.mm:
(TestWebKitAPI::TEST):

Canonical link: https://commits.webkit.org/265983@main
  • Loading branch information
achristensen07 committed Jul 12, 2023
1 parent 7758544 commit 76f9354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/TestWebKitAPI/Tests/WebKitCocoa/SiteIsolation.mm
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ HTTPServer server({
EXPECT_NE(childFramePid, 0);
EXPECT_NE(otherChildFramePid, 0);
EXPECT_EQ(childFramePid, otherChildFramePid);
EXPECT_EQ(mainFramePid, childFramePid);
EXPECT_NE(mainFramePid, childFramePid);
EXPECT_WK_STREQ(mainFrame.info.securityOrigin.host, "example.com");
EXPECT_WK_STREQ(childFrame.info.securityOrigin.host, "webkit.org");
EXPECT_WK_STREQ(otherChildFrame.info.securityOrigin.host, "webkit.org");
Expand Down

0 comments on commit 76f9354

Please sign in to comment.