Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: docs
> ./e2e/tests/vue/issue-777-vml-header-render.spec.ts
/**
* Vue parity for issue #777 (render-level) — the VML header logo paints and an
* anchored image with no explicit alignment is left-aligned (Word default), not
* centered. The parsing + alignment fixes live in core; this proves they reach
* the Vue-mounted painter too.
*/
import { test, expect } from '@playwright/test';
test('Vue: VML header logo renders and a left-anchored image is left-aligned (#777)', async ({
page,
}) => {
await page.goto('http://localhost:5174/?e2e=1');
await page.locator('.docx-editor-vue').waitFor();
await page
.locator('input[type="file"]')
.first()
.setInputFiles('e2e/fixtures/issue-777-vml-header.docx');
await page.waitForSelector('[data-page-number]');
const headerImg = page.locator('.layout-page-header img').first();
await expect(headerImg).toHaveCount(1);
const src = await headerImg.getAttribute('src');
expect(src && src.length).toBeGreaterThan(0);
const align = await page.evaluate(() => {
const lines = Array.from(
document.querySelectorAll('.layout-page-content .layout-line[data-flex-line="true"]')
) as HTMLElement[];
const imageLine = lines.find((l) => l.querySelector('img'));
return imageLine ? getComputedStyle(imageLine).justifyContent : null;
});
expect(align).toBe('flex-start');
});