Skip to content

Commit dc700c4

Browse files
committed
make the test passing - #338 is there as reminder
1 parent 7236427 commit dc700c4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSSelectorTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,10 @@ public void pseudoRadioChecked() throws Exception {
899899
@Test
900900
@Alerts(DEFAULT = {"theform", "id3"},
901901
IE = "id3") //minLength and maxLength not supported in IE
902+
@HtmlUnitNYI(CHROME = {"id3", "id5", "id6"},
903+
EDGE = {"id3", "id5", "id6"},
904+
FF = {"id3", "id5", "id6"},
905+
FF78 = {"id3", "id5", "id6"})
902906
public void pseudoInvalid() throws Exception {
903907
final String html = "<html><head>\n"
904908
+ "<script>\n"
@@ -932,6 +936,11 @@ public void pseudoInvalid() throws Exception {
932936
*/
933937
@Test
934938
@Alerts({"id1", "id2", "id4", "id5", "id6"})
939+
@HtmlUnitNYI(CHROME = {"", "", "", "", "theform", "id1", "id2", "id4", "id7"},
940+
EDGE = {"", "", "", "", "theform", "id1", "id2", "id4", "id7"},
941+
FF = {"", "", "", "", "theform", "id1", "id2", "id4", "id7"},
942+
FF78 = {"", "", "", "", "theform", "id1", "id2", "id4", "id7"},
943+
IE = {"", "", "", "", "theform", "id1", "id2", "id4", "id5", "id6", "id7"})
935944
public void pseudoValid() throws Exception {
936945
final String html = "<html><head>\n"
937946
+ "<script>\n"

0 commit comments

Comments
 (0)