-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Nested <details> elements don't update properly #35727
Copy link
Copy link
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentC-has-manual-testcaseI-wrongAn incorrect behaviour is observed.An incorrect behaviour is observed.
Description
The test case is this file:
<!DOCTYPE html>
<html>
<body>
<details>
<summary>Top Level</summary>
<details>
<summary>Sub Level 1</summary>
<p>Some text about something.</p>
</details>
<details>
<summary>Sub Level 2</summary>
<p>Some text about something else.</p>
</details>
</details>
</body>
</html>To reproduce the issue, follow these steps:
- tap on the
Top Levelheading -> this opens the details and shows the 2 sub level headings. - tap on the
Sub Level 1heading -> nothing happens! - tap again twice on
Top Level-> now the content ofSub Level 1appears.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-content/domInteracting with the DOM from web contentInteracting with the DOM from web contentC-has-manual-testcaseI-wrongAn incorrect behaviour is observed.An incorrect behaviour is observed.