WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
219001
Allow WKContentRuleList to block only in frames or only in main frame
https://bugs.webkit.org/show_bug.cgi?id=219001
Summary
Allow WKContentRuleList to block only in frames or only in main frame
Alex Christensen
Reported
2020-11-16 12:36:59 PST
Add top-document and iframe-document resource types to WKContentRuleList syntax
Attachments
Patch
(13.34 KB, patch)
2020-11-16 12:37 PST
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
Patch
(23.31 KB, patch)
2020-12-21 18:43 PST
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
Patch
(28.03 KB, patch)
2021-03-24 13:32 PDT
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
Patch
(27.84 KB, patch)
2021-03-24 17:27 PDT
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
Patch
(28.01 KB, patch)
2021-03-25 20:41 PDT
,
Alex Christensen
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Alex Christensen
Comment 1
2020-11-16 12:37:53 PST
Created
attachment 414271
[details]
Patch
Radar WebKit Bug Importer
Comment 2
2020-11-26 03:20:50 PST
<
rdar://problem/71747736
>
Alex Christensen
Comment 3
2020-12-21 18:43:04 PST
Created
attachment 416645
[details]
Patch
Benjamin Poulain
Comment 4
2020-12-22 13:38:33 PST
I think we can fulfill the original request while making something more powerful. Instead of creating a new resource type, add a new field that specify the context: All, MainFrame, Iframe, SubFrame. Something like that. The whole rule would be ignored if not in the right context. This would allow any rule to be applied specifically based on the context. I assume it is common to block things when in frames but not in the top document (say tracking cookies from Facebook for example). The downside is more useless matching if we filter a posteriori. If that becomes an issue, it can be fixed by splitting the filter by context a priori. What do you think?
Alex Christensen
Comment 5
2020-12-22 16:40:43 PST
Sounds like something to discuss next year. That might be necessary to fix
rdar://problem/72203352
too.
Alex Christensen
Comment 6
2021-02-02 14:31:33 PST
That would not allow us the same functionality as having a nested-frame resource type. An iframe's main resource is loaded in the context of its parent frame, so we would be unable to specify that we would like to block iframe main resources with your suggestion.
Alex Christensen
Comment 7
2021-03-24 13:32:17 PDT
Created
attachment 424175
[details]
Patch
Geoffrey Garen
Comment 8
2021-03-24 13:58:29 PDT
Comment on
attachment 424175
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424175&action=review
> Source/WebCore/loader/ResourceLoadInfo.cpp:132 > + if (name == "iframe") > + return { LoadContext::IFrame };
I think 'iframe' is the wrong name here because 'iframe' implies only <iframe> elements, but child frames can also be <frame>, <object>, or <embed>. Here's an alternative that matches web speak a little more: { top-frame, child-frame } Here's an alternative that matches our parlance a little more: { main-frame, sub-frame } I'd be happy with either of those, or something else that avoids 'iframe'. I don't think we should do 'iframe'.
Alex Christensen
Comment 9
2021-03-24 17:27:08 PDT
Created
attachment 424204
[details]
Patch
Benjamin Poulain
Comment 10
2021-03-25 19:42:50 PDT
Comment on
attachment 424204
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=424204&action=review
> Source/WebCore/contentextensions/ContentExtensionsBackend.cpp:271 > + ResourceLoadInfo resourceLoadInfo = { url, mainDocumentURL, { ResourceType::Ping, ResourceType::Other } };
Why not add ping to the "other" resource type in readResourceType? Wouldn't this be more consistent with the other loaded resources?
> Source/WebCore/loader/PingLoader.cpp:125 > + if (processContentRuleListsForLoad(frame, request, { ContentExtensions::ResourceType::Other, ContentExtensions::ResourceType::Ping }))
Ditto here regarding ping flags.
> Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm:307 > + auto handler = [[TestURLSchemeHandler new] autorelease];
I hope TEST has an autorelease pool :-D
> Tools/TestWebKitAPI/Tests/WebKitCocoa/ContentRuleListNotification.mm:373 > + [userContentController addContentRuleList:listWithLoadContext("child-frame").get()]; > + [webView reload]; > + EXPECT_WK_STREQ([webView _test_waitForAlert], "main frame fetched successfully"); > + EXPECT_WK_STREQ([webView _test_waitForAlert], "iframe fetch failed"); > + > + [userContentController removeAllContentRuleLists]; > + [userContentController addContentRuleList:listWithLoadContext("top-frame").get()]; > + [webView reload]; > + EXPECT_WK_STREQ([webView _test_waitForAlert], "main frame fetch failed"); > + EXPECT_WK_STREQ([webView _test_waitForAlert], "iframe fetched successfully");
I like those tests!
Alex Christensen
Comment 11
2021-03-25 20:41:02 PDT
Created
attachment 424314
[details]
Patch
EWS
Comment 12
2021-03-25 22:20:58 PDT
Ben Poulain found in /Volumes/Data/worker/Commit-Queue/build/Source/WebCore/ChangeLog does not appear to be a valid reviewer according to contributors.json. /Volumes/Data/worker/Commit-Queue/build/Source/WebCore/ChangeLog neither lists a valid reviewer nor contains the string "Unreviewed" or "Rubber stamp" (case insensitive).
Benjamin Poulain
Comment 13
2021-03-26 12:49:06 PDT
Update looks good to me! (In reply to EWS from
comment #12
)
> Ben Poulain found in > /Volumes/Data/worker/Commit-Queue/build/Source/WebCore/ChangeLog does not > appear to be a valid reviewer according to contributors.json. > /Volumes/Data/worker/Commit-Queue/build/Source/WebCore/ChangeLog neither > lists a valid reviewer nor contains the string "Unreviewed" or "Rubber > stamp" (case insensitive).
You may need to use my full name.
Alex Christensen
Comment 14
2021-03-29 13:29:04 PDT
r275078
Alex Christensen
Comment 15
2021-05-19 14:20:08 PDT
***
Bug 153559
has been marked as a duplicate of this bug. ***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug