Starting this issue, as a placeholder for accessibility review. Leave this open until Claro is marked as stable in Drupal core.

Scope

Assess how well Claro performs when a Windows High Contrast theme is in place.

This is not intended as an implementation issue. Create child issues to fix any problems that are discovered.

Issues found

Must haves

Uncategorized

  • Claro currently uses the -ms-high-contrast: active media query in a lot of components (I counted 16 files). The style rules included here will NOT work in Firefox. It would be a good idea to review whether these are necessary, and find alternative approaches if possible. Reviewed and filed issues where needed here
  • In css/src/components/pager.css, I found a white border:
    @media (-ms-high-contrast: active) {
      .pager__link.is-active {
        border: var(--pager-border-width) solid var(--color-white);
      }
    }
    

    This won't work when a user has chosen the "High Contrast White" preset HC scheme, or has specified their own light background. You should probably use border-color: currentColor;, or avoid specifying a colour at all inside a this media query.
    Solved in #3194669: Misuse of explicit colour for active pager item in -ms-high-contrast media query

Should haves

Should haves that need to be fixed outside of Claro

These issues also occur in other themes (including Seven) and need to be fixed within their core components.

Testing approach, and useful implementation tips

  • Test with more than one high-contrast theme. Windows has 4 preset high-contrast colour schemes.
  • Be aware that users can specify their own high-contrast theme colours. Don't assume that are using one of the 4 preset high contrast themes. They might want deep purple on pale orange, say.
  • The -ms-high-contrast media query does not work in Firefox, even though the browser has some reasonable support for Windows High Contrast mode. Don't rely on this media query to convey any essential information.
  • Avoid using the black-on-white or white-on-black values for the -ms-high-contrast media query. These aren't matched by user-specified high-contrast colour schemes.
  • Avoid using the -ms-high-contrast-adjust property.
  • Avoid using CSS background image to convey essential information. These are stripped out in Internet Explorer and Firefox.

Background reading

Triage plan for high-contrast support

For Claro as an experimental theme in Drupal core:

  1. Alpha: Windows high contrast support is NOT a blocker to adding Claro to Drupal core as an experimental theme. Aim for a first-pass assessment, to get an idea of how well it performs, and a rough plan of what needs to be addressed.
  2. Beta: Complete a detailed assessment of Claro with Windows High Contrast. We don't have to fix all of the issues for beta. At this stage we aim to identify the issues in detail, along with an idea of how they will be addressed.
  3. Stable: Fix issues found here. The exact must/should/could triage will be decided for each child issue individually, as different theme components can fall under different WCAG success criteria. Aim to maximize support for Windows high contrast, across Edge, Internet Explorer, and Firefox.
  4. Enabled in Standard profile as the default admin theme: Aim to fix all of the outstanding should-haves discovered here.

Browser support

3 browsers currently respond to Windows High Contrast mode.

  • Edge - displays CSS background images.
  • Internet Explorer - strips out CSS background images.
  • Firefox - doesn't respond to the -ms-high-contrast media query. Strips out CSS background images.

We don't have to achieve exactly the same appearance in all of these, and aesthetics is low priority. Rather, we should make sure there isn't any functionality/information which which works in one browser, but not another. For example:

  • Edge shows CSS background images, but Internet Explorer and Firefox strip them out. So if any icon conveys important information, this would be a problem.
  • Firefox doesn't respond to the -ms-high-contrast media query. Relying on this to fix issues may result in a WCAG failure in Firefox.

Comments

andrewmacpherson created an issue. See original summary.

andrewmacpherson’s picture

Issue summary: View changes

It's great to see that Claro implementers are already addressing Windows high-contrast mode. It's already doing better than Seven in some places.

Early observations:

  1. Claro currently uses the -ms-high-contrast: active media query in a lot of components (I counted 16 files). The style rules included here will not work in Firefox. It would be a good idea to review whether these are necessary, and find alternative approaches if possible.
  2. There are currently no uses of -ms-high-contrast: white-on-black or -ms-high-contrast: black-on-white. Great, let's keep it that way.
  3. There are currently no uses of the -ms-high-contrast-adjust property. Great, let's keep it that way.
  4. There are a lot of CSS background images. These are stripped out by Internet Explorer and Firefox, but Edge displays them. If any of these icons essential, we should not use background images. Alternative techniques are to use SVG-in-HTML, or use CSS content: url() instead of background images. In the latter case, you loose the ability to use the related background properties like size, repeat, and attachment. It's possible to control the size of SVG in CSS content using font-size, but the lack of background-attachment means that sprite files aren't a good technique.
  5. In css/src/components/pager.css, I found a white border:
    @media (-ms-high-contrast: active) {
      .pager__link.is-active {
        border: var(--pager-border-width) solid var(--color-white);
      }
    }
    

    This won't work when a user has chosen the "High Contrast White" preset HC scheme, or has specified their own light background. You should probably use border-color: currentColor;, or avoid specifying a colour at all inside this media query.

andrewmacpherson’s picture

Issue summary: View changes
andrewmacpherson’s picture

Issue summary: View changes
andrewmacpherson’s picture

Issue summary: View changes
andrewmacpherson’s picture

Issue summary: View changes
huzooka’s picture

fhaeberle’s picture

For the issues found in the issue summary, should there be follow-ups to fix those issues?

andrewmacpherson’s picture

#8: the best way to make it visible is to avoid using CSS background images. Using CSS generated content is OK.

#9: Yes, follow-ups for those. This issue started as a brain-dump.

andrewmacpherson’s picture

huzooka’s picture

Project: Claro » Drupal core
Version: 8.x-1.x-dev » 8.9.x-dev
Component: Code » Claro theme
bskibinski’s picture

StatusFileSize
new332.51 KB

I would propose to remove all the -ms-high-contrast media queries because of one main upcoming reason:
It's not supported anymore in the upcoming version of Edge (see screenshot).

Edge is moving to chromium, and I just tested this with their latest build (I believe it's a RC-build).
The high contrast mode is not supported there at all (just as it's not supported in chromium).
Firefox does do 'high contrast' but ignores the media query.

This means that this (unofficial) spec will only work for IE11 in the very near future (probably end of this year, at most spring 2020).

I do not think this is worth the effort (because the spec in the current state is very unreliable, and you just can't assure good design with it).

So my proposal is: remove the -ms-high-contrast media query, in favor of modern and official mediaqueries.
They are working on a "prefers-contrast" media query: https://drafts.csswg.org/mediaqueries-5/#prefers-contrast
I think it would be better to keep an eye out on that spec, and implement that as soon as browsers start implementing it.

huzooka’s picture

We still have to support Internet Explorer 11.

bskibinski’s picture

Removing this media query doesn't necessarily mean we break IE11: The high contrast will still apply, we just won't be able to define what the colors should be if they have this enabled.

And another argument is, that this spec is just not 'complete' enough to be able to support this well. People can choose their own contrast colors, there are just too many variables to reliably test our adjusted high-contrast theme.

I think a better way to go forward is to test the high contrast with the 'normal' CSS, and make sure no functionality is broken.
I'll try to do some tests, but i'm expecting we can fix any issues without the use of the -ms-high-contrast media query.

huzooka’s picture

Version: 8.9.x-dev » 9.1.x-dev

Drupal 8.9.0-beta1 was released on March 20, 2020. 8.9.x is the final, long-term support (LTS) minor release of Drupal 8, which means new developments and disruptive changes should now be targeted against the 9.1.x-dev branch. For more information see the Drupal 8 and 9 minor version schedule and the Allowed changes during the Drupal 8 and 9 release cycles.

rainbreaw’s picture

Confirming that this is a critical issue for stable because it falls under WCAG 2.1 Level A - 3.3.2 Labels or Instructions.

Much of this may have already been addressed, so at this point we need to do an audit to see what remains.

There is an older issue that has been open for some time that may also provide insight if there are still elements that need to be fixed in relation to this particular issue, logging here for the record: #2921627 Drupal should not use full CSS required marker in forms according to WCAG 2.0

rainbreaw’s picture

I went through the process of adding fields to a content type, creating content (with required fields and different types of fields), sorting content, and looking at other admin screens in windows high contrast mode.

Tested with:

  • Drupal 9.0.3 on simplytest.me
  • Microsoft Edge 44
  • Windows 10

Here is what I found:

Structure page in high contrast mode

This view came out pretty well. The arrows next to each section are visible. There is clear differentiation between visited links and new links, and the lines between each section are clear.

One problem is the outline of the star icon to turn the page into a shortcut is very faint and hard to see. This is described again in the next section under item 1.

More good stuff can be seen in this next screenshot, but we also find a couple of issues that need to be addressed.

Create Article form in high contrast mode

For the most part, everything is relatively visible, including the * (asterisks) to indicate "required."

A few things are very hard to see:

  1. The star icon next to the title is really difficult to make out, and if I didn't know it was there, I probably wouldn't have spotted it
  2. The blue arrows next to the vertical accordion sections in the administrative section in the right sidebar are not visible, so it is really difficult to tell that these can be expanded
  3. The question mark in the tooltip icon next to "about text formats" below the body field is impossible to recognize because of the white on very pale gray

I also found it really hard to tell what I was focused on when navigating through with a keyboard in high contrast mode. For example, in this screenshot:

Content form with various fields, focused on a checkbox

my focus in on the checkbox for "yellow" in the "Checkboxes" field, but the difference is so subtle that it is really hard to see. The focused checkbox has a dotted line and the other two have solid lines, which are nearly thin enough to look like the dotted line.

Additionally, looking above the "Checkboxes" field at the "Radios" field, you'll notice that I've selected red, which has caused the other two radios to become unavailable, and they are rendered with the same thin dotted line that is being used to show me which field I'm focused on in "Checkboxes."

Even more problematic, when I focus on a text field, I get this:

Content form with various fields, focused on a text field

In this screenshot, my focus is on the "Short text" field, but you have no way of seeing this if you don't have the benefit of noticing the flashing cursor.

Another example of problem 3 identified above:

Content types screen in high contrast mode

In this screenshot, the operations menus for each content type have an arrow indicating that they can be expanded, but we cannot see the arrow because it is a pale white on a very light gray button.

bskibinski’s picture

Looking good!

I think a lot of these issues will be fixed as soon as we switch to using inline SVG (using the embed/sprite technique), as it also supports aria-tags, etc.
Using
fill: currentColor;
(or anywhere else that uses colors inside the svg) will enable you to change the colors through CSS, even when you use the "sprite / embed technique".

I'm currently working on municipality sites, and didn't implement any -ms-high-contrast media queries yet, but to my surprise, the new Edge (based on chromium) works well with high-contrast setting enabled in my windows theme.

I wanted to test in the legacy Edge based on "edgeHTML", but I have to figure out how to reinstall them both in a proper manner, so If anyone could check it out if it works at all in the 'old Edge'. Perhaps we could simplify the CSS by removing the deprecated -ms-high-contrast media queries, because I suspect they don't do anything anymore.
I was able to test IE11, and it did apply a high contrast theme, without the use of the -ms-high-contrast. (ignore the broken CSS, i'll have to look into that, it's because high-contrast is enabled :)

But that depends if the 'old Edge' still renders a high-contrast theme without the queries, i suspect so, if even IE11 works with it.

https://montferland.info/

And maybe also a good idea to update the description of the ticket to include that only IE11 looks at those -high-contrast media queries, I don't think even the 'old Edge' supports it at this moment not 100% about that, but it ignores the @media screen and (-ms-high-contrast: none) {} query.
'chromium Edge' definitely doesn't support it anymore.

Hope this helps!

bskibinski’s picture

To my surprise even Firefox supports the windows high contrast mode these days!

Only chrome doesn't support it out of the box but when you have high-contrast enabled, it asks you to install the "high-contrast" extension made by chrome themselves:
https://chrome.google.com/webstore/detail/high-contrast/djcfdncoelnlbldj...

Then the site looks like this (They seem to even account for color blindness).

Wait, maybe the description is ok, i'm assuming some things here, i'll test the media query in the newest edge just to be sure.

dyannenova’s picture

We reviewed Claro in high contrast mode during the Claro Sprint and identified these issues:

IE11

  • Can’t see Favorites star at all
  • Breadcrumb divider is not high contrast
  • Can’t see Select arrow on select components
  • Can’t see Contextual Link icon
  • Can’t see Search button in Search block
  • Can’t see icons in toolbar
  • It isn’t clear that the module description is in a details component because arrow is missing
  • No icons on Status Report, no color differences, mean it’s difficult to gather info quickly
  • The border under each module on Extend is thick and very distracting

Edge

  • It isn’t clear that the module description is in a details component because arrow is missing
  • Search button in Search block is difficult to see

Firefox

  • Does have bullets for Extend description
  • Can see Select drop down
  • Can’t see icons in toolbar
  • Can’t see Favorites star
bnjmnm’s picture

It looks like some items in #23 are related to contextual links or the modules page, both of which have issues and patches that are quite far along #3072772: Initial Claro design for the modules page #3023322: Contextual Links Style Update. Is is possible that some of the problems reported are already fixed in the patches for those issues. Any high contrast issues not addressed by those patches-in-progress should get mentioned in those issues so they can be incorporated into the implementation.

It then may be worth editing #23 so there isn't a risk of anyone attempting to fix an item that is already fixed as part of a broader component scoped issue.

bnjmnm’s picture

StatusFileSize
new156.5 KB

Since -ms-high-contrast is not applicable to Firefox, the default details icon still loads and results in a very insufficient 2.84:1 contrast ratio.

Version: 9.1.x-dev » 9.2.x-dev

Drupal 9.1.0-alpha1 will be released the week of October 19, 2020, which means new developments and disruptive changes should now be targeted for the 9.2.x-dev branch. For more information see the Drupal 9 minor version schedule and the Allowed changes during the Drupal 9 release cycle.

mgifford’s picture

Issue tags: +vpat

Linking open issues from the CivicActions Accessibility - VPAT.

andrewmacpherson’s picture

There's an important point about manual testing. Most of the Windows high-contrast screenshots I've seen in Claro issues are using a yellow-on-black colour scheme. I assume this is the "High Contrast #1" preset scheme which ships with Windows, which I think it's the default.

There are other preset colour schemes (e.g. white-on-black), and users can specify ANY custom colour combinations they want. Despite the "high-contrast" name, some people actually use a low-contrast palette.

The bug in #3194669: Misuse of explicit colour for active pager item in -ms-high-contrast media query is a good example of why it's important to test with several colour schemes. A high-constrast media query was used to force a white border, but that's bad behaviour because it doesn't respect the user's colour choices. It's also a good example of something that didn't need a media query at all.


Meanwhile, some nice progress in #3171726: Claro Shortcuts star fails WCAG Use of Color and Non-text contrast. There's a new design direction which needs to be implemented.

mgifford’s picture

Issue tags: +wcag131

Link to help folks test this
https://marcus.io/blog/checking-whcm-on-mac

shaal’s picture

StatusFileSize
new207.91 KB

(Using https://shadow.tech, which is a paid service to run a PC in the cloud)

On latest Windows 10:
I tested Umami with Claro as admin theme.
I tested IE11, Firefox, Edge chromium.
I tested the various High Contrast #1, High Contrast #2, High Contrast Black, High Contrast White.

I looked at various content pages, as well as admin pages.

Actually, I think the chevron-down icon for the dropdown appears in grey color, which is lacking contrast.
Windows high-contrast screenshot

Other than that, I couldn't find more accessibility contrast issues. Am I missing something? Are there specific known issues, or we should go through all pages and look for issues?

bnjmnm’s picture

This issue is getting a bit unwieldy. For next steps it would be good to go through each of the high-contrast bugs reported in this issue, confirm they are still a problem (some were reported over a year ago) and file child issues for them. New issues can be created here: https://www.drupal.org/node/add/project-issue/drupal, the issue metadata can match this issue's metadata, and you can specify this as a parent issue by typing this issue's title into the "parent issue" field and autocomplete should do the rest.

As the issues get filed, leave a comment along the lines of

I confirmed the [where the problem is] bug reported in comment #[comment number] is still happening, and filed this issue: [link to issue]

I can get the issue summary here cleaned up once the child issues are created.

Version: 9.2.x-dev » 9.3.x-dev

Drupal 9.2.0-alpha1 will be released the week of May 3, 2021, which means new developments and disruptive changes should now be targeted for the 9.3.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

andrewmacpherson’s picture

Title: Assess accessibility of Claro in Windows High Contrast » Assess accessibility of Claro in High Contrast AKA forced colors mode
Issue tags: +forced colors, +Needs issue summary update

Re. #31:

As the issues get filed, leave a comment along the lines of I confirmed the [...] bug [...] is still happening, and filed this issue:

Yes, perfect. The original purpose of this issue was to track how well Claro performs in Windows high-contrast mode.

The only slight difference is that Windows is no longer the only forced-color platform, so I've updated the title. (Firefox activates forced colours when a high-contrast GTK3 theme is used in Linux, and Firefox can also use forced colours even when the OS isn't. It makes little difference for us.)

I can get the issue summary here cleaned up once the child issues are created.

Indeed, much information is duplicated between this one, #3167032: [Meta] Track CSS forced-color standardization and browser support, and #2894237: Make core themes more robust in Windows High-Contrast mode. All three have outdated information in their issue summaries to some degree.

I'd suggest:


This nugget in #21 intrigued me...

I think a lot of these issues will be fixed as soon as we switch to using inline SVG

What's the latest news on this? To clarify, does this mean SVG elements inside the HTML source, or SVG inside the CSS source? (Olivero uses a mixture of both, I noticed.)

I don't have a strong opinion in on which one is best, however it does make a difference to the next steps for making the icons respond to forced colours.

  • For SVG in CSS as we currently have, we'd need to have variant SVG images which use system colour keywords for the fill, and over-ride the background-image in using a forced-colors media query.
  • For SVG in HTML, we can avoid having to override background-image with a the forced-colors media query, and just override the fill property.

Either is feasible given the current state of forced-colors support in browsers.


Re. #13:

I would propose to remove all the -ms-high-contrast media queries

[...]

This means that this (unofficial) spec will only work for IE11 in the very near future (probably end of this year, at most spring 2020).

I do not think this is worth the effort (because the spec in the current state is very unreliable, and you just can't assure good design with it).

We're committed to supporting IE11 in Drupal 9 until the end of 2023, regardless of how long Microsoft want to support it. There are still plenty of Windows 7 installations out there, and Windows high-contrast is a very popular feature. The behaviour of IE11 in high-contrast mode differs from modern browsers, but it's not too far removed and the legacy media query does work. I see no reason why we can't support IE11 for as long as we have committed to. IE11 holds various frustrations, but high-contrast mode isn't chief among them. The legacy high-contrast media queries can all be removed in D10 easily enough. I'm not worried about pixel-perfect design in our IE11 support, but it should remain functional in high-contrast mode.

Also re. #13:

They are working on a "prefers-contrast" media query

This information is out of date. The latest working draft of media-queries-5 describes prefers-contrast: forced and says that forced-colors: active is a legacy alias for this.

However since then, the CSS working group has bikeshedded on this, and prefers-contrast: forced was seen as a mistake. The resolution was to revert to treating forced-colors and prefers-contrast as separate concerns. Mozilla and Chromium have both implemented forced-colors: active, and to the best of my knowledge prefers-contrast: forced wasn't ever implemented in a stable browser release. These changes have been committed in the editor drafts, but a new public working draft hasn't been tagged yet.

Version: 9.3.x-dev » 9.4.x-dev

Drupal 9.3.0-rc1 was released on November 26, 2021, which means new developments and disruptive changes should now be targeted for the 9.4.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

mherchel’s picture

Issue summary: View changes

Updating summary to note that Firefox does display background images in forced-colors mode. IE is the lone holdout.

mherchel’s picture

mherchel’s picture

mherchel’s picture

mherchel’s picture

mherchel’s picture

mherchel’s picture

mherchel’s picture

mherchel’s picture

ckrina’s picture

Thank you for creating all these issue! Would it be possible to sort them out as Must haves/Should haves/Could haves? So this we can prioritize.

mherchel’s picture

Issue summary: View changes

Would it be possible to sort them out as Must haves/Should haves/Could haves? So this we can prioritize.

Done!

effulgentsia’s picture

Thank you!

Are the three "Needs to be fixed outside of Claro" issues must-have, should-have, or some of each? I don't think that them needing to be fixed outside of Claro automatically determines that. If Seven suffers from the same problem, then I think the issue would not be a must, but if it's a regression from Seven, then I think that if it's a big enough accessibility problem, it might need to be a must-have for Claro to become the default admin theme even if the fix needs to be made outside of Claro.

mherchel’s picture

Issue summary: View changes

Good question.

All of the "Needs to be fixed outside of Claro" issues occur in Seven (and Bartik and Olivero). So, I agree that none of them are a "must" for Claro.

That being said, they all should be fairly high priority from an accessibility standpoint.

I updated the summary.

mherchel’s picture

effulgentsia’s picture

Issue summary: View changes

Moved the must-have list to the top of the summary.

mherchel’s picture

Re-saving to update summary issues statuses

mherchel’s picture

Status: Active » Reviewed & tested by the community

I went through and extensively tested Claro in Windows 11 high contrast, including both Edge, and Firefox. With the issues above marked as fixed, Claro is great and highly usable in forced colors including icons, focus states, and borders.

bnjmnm’s picture

Issue summary: View changes

Just completed this step from the issue summary and filed some issues:

Claro currently uses the -ms-high-contrast: active media query in a lot of components (I counted 16 files). The style rules included here will NOT work in Firefox. It would be a good idea to review whether these are necessary, and find alternative approaches if possible.

The uses in action-link.pcss.css are either specific to IE11 or are accompanied by forced-colors styling
👉 #3130305: Ensure all of Claro's background images are visible in forced colors mode.

The use in ajax-progress.module is specific to IE11

The uses in details.pcss.css are accompanied by forced-colors styling
👉 #3269341: Claro <details> element not rendering properly in forced colors

dialog.pcss.css uses the media query for styling the close icon. This is fine in Edge but not in FF/Chrome
Filed this 👉#3277262: Dialog close icon has poor contrast with forced-colors

dropbutton.pcss.css has forced-colors styling too
added in 👉#3130305: Ensure all of Claro's background images are visible in forced colors mode.

form--checkbox-radio.pcss.css has forced colors styling
added in 👉 #3271305: Claro's radio buttons and checkboxes are unusable in high-contrast / forced colors mode

form--managed-file.pcss.css is IE11 specific styling

form---password-confirm.pcss.css manual tests confirm the password strength bar looks fine

image-preview.pcss.css manual tests confirm .image-preview img looks fine

messages.pcss.css I found an issue
filed 👉 #3277285: Firefox WHCM messages don't have a border

pager.pcss.css has forced-colors support
addessed in 👉 #3194669: Misuse of explicit colour for active pager item in -ms-high-contrast media query and #3130305: Ensure all of Claro's background images are visible in forced colors mode.

progress.pcss.css manual tests confirm .progress__bar looks fine

tabledrag.pcss.css has forced colors support
added in #3130305: Ensure all of Claro's background images are visible in forced colors mode.

vertical-tabs.pcss.css found issues with FF/Chrome
filed 👉 #3277287: Improve vertical tabs in forced colors mode

views-ui.pcss.css has forced colors support, but did find a minor issue:
#3277284: Firefox WHCM has a slightly broken border in views UI filter config

media-library.pcss.css does not have forced colors support and the styles used likely mean it's unnecessary
however, I did find another issue. 👉 #3277286: Edge in Windows high contrast mode creates a horizontal scroll in the media library dialog

form--select.pcss.css discovered a Firefox issue
filed 👉 #3277290: Select elements missing chevron in FF WCHM

bnjmnm’s picture

Issue summary: View changes
Issue tags: -Needs accessibility review

Based on the reviews by me and the many other contributors in this issue and some the already-fixed must-have issues discovered here, I feel like it's safe to say that Claro easily provides as good a WCHM experience as Seven (arguably much better). The due diligence has been done and additional WCHM bugs can be filed in the issue queue like a regular civilian bug.

I'm removing the needs accessibility review tag but holding off on the switch to fixed as there should be one more check of the issue summary and some of the issues discovered here should get added to related issues and potentially the Claro roadmap (as should haves).

After that bit of housekeeping I think a switch to fixed is warranted.

ckrina’s picture

Assigned: Unassigned » bnjmnm

@bnjmnm assigning this to you meanwhile. Thanks!

Version: 9.4.x-dev » 9.5.x-dev

Drupal 9.4.0-alpha1 was released on May 6, 2022, which means new developments and disruptive changes should now be targeted for the 9.5.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

lauriii’s picture

Status: Reviewed & tested by the community » Needs work

Moving to needs work to make it clear that @bnjmnm intended to work on this.

Version: 9.5.x-dev » 10.1.x-dev

Drupal 9.5.0-beta2 and Drupal 10.0.0-beta2 were released on September 29, 2022, which means new developments and disruptive changes should now be targeted for the 10.1.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

Version: 10.1.x-dev » 11.x-dev

Drupal core is moving towards using a “main” branch. As an interim step, a new 11.x branch has been opened, as Drupal.org infrastructure cannot currently fully support a branch named main. New developments and disruptive changes should now be targeted for the 11.x branch, which currently accepts only minor-version allowed changes. For more information, see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

kentr’s picture

What's the status of this issue?

bnjmnm’s picture

Assigned: bnjmnm » acbramley
bnjmnm’s picture

Assigned: acbramley » Unassigned

Version: 11.x-dev » main

Drupal core is now using the main branch as the primary development branch. New developments and disruptive changes should now be targeted to the main branch.

Read more in the announcement.