Skip to content

Commit e458766

Browse files
authored
Remove mentions of Edge (#80)
1 parent f846ba2 commit e458766

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

modern-normalize.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ Text-level semantics
6262
*/
6363

6464
/**
65-
Add the correct text decoration in Chrome, Edge, and Safari.
65+
Add the correct text decoration in Chrome and Safari.
6666
*/
6767

6868
abbr[title] {
6969
text-decoration: underline dotted;
7070
}
7171

7272
/**
73-
Add the correct font weight in Edge and Safari.
73+
Add the correct font weight in Chrome and Safari.
7474
*/
7575

7676
b,

test/acceptance/chrome/rules.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ test('Add the correct height in Firefox.', async t => {
4242
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).eql('2px');
4343
});
4444

45-
test('Add the correct text decoration in Edge, and Safari.', async t => {
45+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4646
await t
4747
.expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).eql('underline dotted rgb(0, 0, 0)');
4848
});
4949

50-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
50+
test('Add the correct font weight in Chrome and Safari.', async t => {
5151
await t
5252
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).eql('900')
5353
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).eql('900');

test/acceptance/chrome/validation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ test('Add the correct height in Firefox.', async t => {
4242
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).notEql('2px');
4343
});
4444

45-
test('Add the correct text decoration in Edge, and Safari.', async t => {
45+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4646
await t
4747
.expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).eql('underline dotted rgb(0, 0, 0)');
4848
});
4949

50-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
50+
test('Add the correct font weight in Chrome and Safari.', async t => {
5151
await t
5252
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).notEql('900')
5353
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).notEql('900');

test/acceptance/firefox/rules.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ test('Add the correct height in Firefox.', async t => {
4242
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).eql('2px');
4343
});
4444

45-
test('Add the correct text decoration in Chrome, Edge, and Safari.', async t => {
45+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4646
await t
4747
.expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).eql('underline dotted rgb(0, 0, 0)');
4848
});
4949

50-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
50+
test('Add the correct font weight in Chrome and Safari.', async t => {
5151
await t
5252
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).eql('900')
5353
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).eql('900');

test/acceptance/firefox/validation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ test('Add the correct height in Firefox.', async t => {
4242
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).notEql('2px');
4343
});
4444

45-
test('Add the correct text decoration in Chrome, Edge, and Safari.', async t => {
45+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4646
await t
4747
.expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).eql('underline dotted rgb(0, 0, 0)');
4848
});
4949

50-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
50+
test('Add the correct font weight in Chrome and Safari.', async t => {
5151
await t
5252
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).eql('900')
5353
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).eql('900');

test/acceptance/safari/rules.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ test('Add the correct height in Firefox.', async t => {
4343
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).eql('2px');
4444
});
4545

46-
test('Add the correct text decoration in Edge, and Safari.', async t => {
46+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4747
// TODO: Why `text-decoration` is none?
4848
// await t
4949
// .expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).eql('underline dotted');
5050
});
5151

52-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
52+
test('Add the correct font weight in Chrome and Safari.', async t => {
5353
await t
5454
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).eql('900')
5555
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).eql('900');

test/acceptance/safari/validation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ test('Add the correct height in Firefox.', async t => {
4343
.expect(Selector('hr[data-test--hr]').getStyleProperty('height')).notEql('2px');
4444
});
4545

46-
test('Add the correct text decoration in Chrome, Edge, and Safari.', async t => {
46+
test('Add the correct text decoration in Chrome and Safari.', async t => {
4747
// await t
4848
// .expect(Selector('abbr[data-test--abbr]').getStyleProperty('text-decoration')).notEql('underline dotted');
4949
});
5050

51-
test('Add the correct font weight in Chrome, Edge, and Safari.', async t => {
51+
test('Add the correct font weight in Chrome and Safari.', async t => {
5252
await t
5353
.expect(Selector('b[data-test--bold]').getStyleProperty('font-weight')).notEql('900')
5454
.expect(Selector('strong[data-test--bold]').getStyleProperty('font-weight')).notEql('900');

0 commit comments

Comments
 (0)