Skip to content
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

🚮 Remove IE Support via Polyfills and Conditional Statements #35317

Merged
merged 17 commits into from
Aug 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Feedback on describe tests not needing configuration now
  • Loading branch information
kristoferbaxter committed Aug 3, 2021
commit b2bc374a363d16089948438df63076252c9530a2
6 changes: 3 additions & 3 deletions test/unit/core/dom/layout/test-layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ describes.realWin('ampshared.css', {amp: true}, function (env) {
doc.body.appendChild(element);
});

describe.configure().run('overflow', function () {
describe('overflow', function () {
let overflow;

beforeEach(() => {
Expand Down Expand Up @@ -717,7 +717,7 @@ describes.realWin('Layout: aspect-ratio CSS', {amp: true}, function (env) {
resetShouldUseAspectRatioCssForTesting();
});

describe.configure().run('aspect-ratio not supported', function () {
describe('aspect-ratio not supported', function () {
before(function () {
if (CSS.supports('aspect-ratio: 1/1')) {
this.skipTest();
Expand Down Expand Up @@ -750,7 +750,7 @@ describes.realWin('Layout: aspect-ratio CSS', {amp: true}, function (env) {
});
});

describe.configure().run('aspect-ratio supported', function () {
describe('aspect-ratio supported', function () {
before(function () {
if (!CSS.supports('aspect-ratio: 1/1')) {
this.skipTest();
Expand Down