Skip to content

Commit 872cc84

Browse files
committed
neko: section no longer closes select
1 parent 15df9a4 commit 872cc84

3 files changed

Lines changed: 27 additions & 0 deletions

File tree

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
<body>
1010
<release version="5.4.0" date="August xx, 2026" description="Firefox 153, Bugfixes">
11+
<action type="fix" dev="rbri">
12+
neko: section no longer closes select.
13+
</action>
1114
<action type="add" dev="rbri">
1215
Property HTMLFieldSetElement.type added.
1316
</action>

src/test/java/org/htmlunit/general/huge/ElementClosesElement2Test.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,18 @@ public class ElementClosesElement2Test extends WebDriverTestCase {
5555
public static Collection<Arguments> data() throws Exception {
5656
final List<Arguments> list = new ArrayList<>();
5757
final List<String> strings = new ArrayList<>(DefaultElementFactory.SUPPORTED_TAGS_);
58+
59+
// no longer supported but we still like to test this
60+
strings.add("blink");
61+
strings.add("ilayer");
62+
strings.add("layer");
63+
strings.add("multicol");
64+
strings.add("nextid");
65+
strings.add("nolayer");
66+
strings.add("sound");
67+
strings.add("spacer");
68+
strings.add("xml");
69+
5870
strings.add("unknown");
5971

6072
for (final String parent : strings) {

src/test/java/org/htmlunit/general/huge/ElementClosesElementTest.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ public class ElementClosesElementTest extends WebDriverTestCase {
7575
public static Collection<Arguments> data() throws Exception {
7676
final List<Arguments> list = new ArrayList<>();
7777
final List<String> strings = new ArrayList<>(DefaultElementFactory.SUPPORTED_TAGS_);
78+
79+
// no longer supported but we still like to test this
80+
strings.add("blink");
81+
strings.add("ilayer");
82+
strings.add("layer");
83+
strings.add("multicol");
84+
strings.add("nextid");
85+
strings.add("nolayer");
86+
strings.add("sound");
87+
strings.add("spacer");
88+
strings.add("xml");
89+
7890
strings.add("unknown");
7991

8092
for (final String parent : strings) {

0 commit comments

Comments
 (0)