Skip to content

Commit

Permalink
Bug 1856013 [wpt PR 42249] - Add test for insertion of new <details n…
Browse files Browse the repository at this point in the history
…ame> elements into a group., a=testonly

Automatic update from web-platform-tests
Add test for insertion of new <details name> elements into a group.

I realized this test was missing due to
whatwg/html#9400 (comment)

Bug: 1444057
Change-Id: I18d5b553d2ab20543b37e190c1768703b43ac843
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4903590
Auto-Submit: David Baron <[email protected]>
Reviewed-by: Joey Arhar <[email protected]>
Commit-Queue: Joey Arhar <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1203408}

--

wpt-commits: 59cd10c8c3296f14addd02e7ad2c35da7b6afb1a
wpt-pr: 42249
  • Loading branch information
dbaron authored and moz-wptsync-bot committed Oct 4, 2023
1 parent 8a3ebc1 commit 444b9f5
Showing 1 changed file with 56 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,5 +359,61 @@
assert_element_states(elements, [1, 0, 0], "states after insertion by parser");
}, "closing as a result of parsing doesn't depend on attribute order");

promise_test(async t => {
container.innerHTML = `
<details name="a" id="e0" open></details>
<details name="a" id="e1"></details>
`;
let elements = [ document.getElementById("e0"),
document.getElementById("e1") ];

assert_element_states(elements, [1, 0], "states before first mutation");

let make_details = () => {
let e = document.createElement("details");
e.setAttribute("name", "a");
return e;
};

let watch_e0 = new EventWatcher(t, elements[0], ['toggle']);
let watch_e1 = new EventWatcher(t, elements[1], ['toggle']);

let expect_opening = async (watcher) => {
await watcher.wait_for(['toggle'], {record: 'all'}).then((events) => {
assert_equals(events[0].oldState, "closed");
assert_equals(events[0].newState, "open");
});
};

let expect_closing = async (watcher) => {
await watcher.wait_for(['toggle'], {record: 'all'}).then((events) => {
assert_equals(events[0].oldState, "open");
assert_equals(events[0].newState, "closed");
});
};

await expect_opening(watch_e0);

// Test appending an open element in the group.
let new1 = make_details();
let watch_new1 = new EventWatcher(t, new1, ['toggle']);
new1.open = true;
await expect_opening(watch_new1);
container.appendChild(new1);
await expect_closing(watch_new1);

// Test appending a closed element in the group.
let new2 = make_details();
let watch_new2 = new EventWatcher(t, new2, ['toggle']);
container.appendChild(new2);

// Test inserting an open element at the start of the group.
let new3 = make_details();
new3.open = true; // this time do this before creating the EventWatcher
let watch_new3 = new EventWatcher(t, new3, ['toggle']);
await expect_opening(watch_new3);
container.insertBefore(new3, elements[0]);
await expect_closing(watch_new3);
}, "handling of insertion of elements into group");

</script>

0 comments on commit 444b9f5

Please sign in to comment.