|
| 1 | +import { expect } from '@playwright/test'; |
| 2 | +import { configs, test } from '@utils/test/playwright'; |
| 3 | + |
| 4 | +/** |
| 5 | + * This test verifies that collapsible headers with mode="ios" work correctly |
| 6 | + * when both iOS and MD stylesheets are loaded. The bug occurred because |
| 7 | + * `.header-collapse-condense { display: none }` in the MD stylesheet was not |
| 8 | + * scoped to `.header-md`, causing it to hide iOS condense headers when both |
| 9 | + * stylesheets were present. |
| 10 | + */ |
| 11 | +configs({ modes: ['md'], directions: ['ltr'] }).forEach(({ title, config }) => { |
| 12 | + test.describe(title('header: condense with iOS mode override'), () => { |
| 13 | + test('should show iOS condense header when both MD and iOS styles are loaded', async ({ page }) => { |
| 14 | + test.info().annotations.push({ |
| 15 | + type: 'issue', |
| 16 | + description: 'https://github.com/ionic-team/ionic-framework/issues/29929', |
| 17 | + }); |
| 18 | + |
| 19 | + // Include both an MD header and an iOS modal to force both stylesheets to load |
| 20 | + await page.setContent( |
| 21 | + ` |
| 22 | + <!-- MD header to force MD stylesheet to load --> |
| 23 | + <ion-header mode="md" id="mdHeader"> |
| 24 | + <ion-toolbar> |
| 25 | + <ion-title>MD Header</ion-title> |
| 26 | + </ion-toolbar> |
| 27 | + </ion-header> |
| 28 | +
|
| 29 | + <!-- Modal with iOS condense header --> |
| 30 | + <ion-modal> |
| 31 | + <ion-header mode="ios" id="smallTitleHeader"> |
| 32 | + <ion-toolbar> |
| 33 | + <ion-title>Header</ion-title> |
| 34 | + </ion-toolbar> |
| 35 | + </ion-header> |
| 36 | + <ion-content fullscreen="true"> |
| 37 | + <ion-header collapse="condense" mode="ios" id="largeTitleHeader"> |
| 38 | + <ion-toolbar> |
| 39 | + <ion-title size="large">Large Header</ion-title> |
| 40 | + </ion-toolbar> |
| 41 | + </ion-header> |
| 42 | + <p>Content</p> |
| 43 | + </ion-content> |
| 44 | + </ion-modal> |
| 45 | + `, |
| 46 | + config |
| 47 | + ); |
| 48 | + |
| 49 | + const modal = page.locator('ion-modal'); |
| 50 | + const ionModalDidPresent = await page.spyOnEvent('ionModalDidPresent'); |
| 51 | + |
| 52 | + await modal.evaluate((el: HTMLIonModalElement) => el.present()); |
| 53 | + await ionModalDidPresent.next(); |
| 54 | + |
| 55 | + const largeTitleHeader = modal.locator('#largeTitleHeader'); |
| 56 | + |
| 57 | + // The large title header should be visible, not hidden by MD styles |
| 58 | + await expect(largeTitleHeader).toBeVisible(); |
| 59 | + |
| 60 | + // Verify it has the iOS mode class |
| 61 | + await expect(largeTitleHeader).toHaveClass(/header-ios/); |
| 62 | + |
| 63 | + // Verify it does NOT have display: none applied |
| 64 | + // This would fail if the MD stylesheet's unscoped .header-collapse-condense rule applies |
| 65 | + const display = await largeTitleHeader.evaluate((el) => { |
| 66 | + return window.getComputedStyle(el).display; |
| 67 | + }); |
| 68 | + expect(display).not.toBe('none'); |
| 69 | + }); |
| 70 | + }); |
| 71 | +}); |
0 commit comments