fix(studio): keep composition multi-drag positions in sync (#2629)

This commit is contained in:
Miguel Ángel
2026-07-18 20:57:44 +02:00
committed by GitHub
parent 29081a35b1
commit f7911d10b0
2 changed files with 36 additions and 1 deletions
@@ -142,6 +142,32 @@ describe("applyTimelineStackingReorder", () => {
});
describe("patchIframeDomTiming", () => {
it("patches a top-level composition host in its parent source file", () => {
const iframe = makeIframeWith(`
<div data-composition-id="root">
<div
id="scene-host"
data-composition-id="scene"
data-composition-src="compositions/scene.html"
data-start="2"
></div>
</div>
`);
const host = iframe.contentDocument?.getElementById("scene-host");
const target = el({
id: "scene-host",
tag: "div",
kind: "composition",
domId: "scene-host",
sourceFile: "index.html",
compositionSrc: "compositions/scene.html",
});
patchIframeDomTiming(iframe, target, [["data-start", "9"]], "index.html");
expect(host?.getAttribute("data-start")).toBe("9");
});
it("resolves selectorIndex within the element's source file", () => {
const iframe = makeIframeWith(`
<div data-composition-id="root">