ember-learn / guidemaker-ember-template

Guidemaker template for Ember Guides websites
https://guidemaker-ember-template.netlify.app/release
MIT License
5 stars 22 forks source link

Bugfix - If a header precedes a section, move it inside the secton #36

Closed jenweber closed 1 year ago

jenweber commented 4 years ago

I came across this while working on the website redesign.

Before

<h2 id="some-title">Some title</h2>
<section aria-labelledby="some-title">
  <p>Ember is doing better at accessibility</p>
<section>

After

<section aria-labelledby="some-title">
  <h2 id="some-title">Some title</h2>
  <p>Ember is doing better at accessibility</p>
<section>
MelSumner commented 1 year ago

@jenweber how do we re-run these tests?

jenweber commented 1 year ago

I think the easiest thing to do is to rebase the branch. I can do that!

MinThaMie commented 1 year ago

Closed in favour of #159