-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support-for-execution-world-MAIN #23539
Conversation
This pull request has merge conflicts that must be resolved before it can be merged. |
"ExecutionWorld": { | ||
"__compat": { | ||
"support": { | ||
"chrome": { | ||
"version_added": false | ||
}, | ||
"edge": "mirror", | ||
"firefox": { | ||
"version_added": "128" | ||
}, | ||
"firefox_android": "mirror", | ||
"opera": "mirror", | ||
"safari": { | ||
"version_added": false | ||
}, | ||
"safari_ios": "mirror" | ||
} | ||
} | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"ExecutionWorld": { | |
"__compat": { | |
"support": { | |
"chrome": { | |
"version_added": false | |
}, | |
"edge": "mirror", | |
"firefox": { | |
"version_added": "128" | |
}, | |
"firefox_android": "mirror", | |
"opera": "mirror", | |
"safari": { | |
"version_added": false | |
}, | |
"safari_ios": "mirror" | |
} | |
} | |
}, |
The contentScripts.ExecutionWorld
type doesn't exist.
@@ -67,8 +67,7 @@ | |||
}, | |||
"edge": "mirror", | |||
"firefox": { | |||
"version_added": false, | |||
"impl_url": "https://bugzil.la/1736575" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also drop the note from
"notes": "Only supports <code>ISOLATED</code>, not <code>MAIN</code>." |
@@ -308,8 +307,7 @@ | |||
}, | |||
"edge": "mirror", | |||
"firefox": { | |||
"version_added": "102", | |||
"notes": "Only supports <code>ISOLATED</code>, not <code>MAIN</code>." | |||
"version_added": "102" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm. Someone skimming this could mistakenly think that MAIN is supported in 102. Could you add multiple ranges to clarify that 102 only introduced support for ISOLATED, and 128 also added support for MAIN?
Summary
BCD in support of Bug 1736575 Support execution world MAIN in
scripting.executeScript()
and content_scripts including:scripting.ExecutionWorld
scripting.ExecutionWorld
and theworld
property tocontentScripts.register()
Related issues
Related content changes are in mdn/content#34466