From: <rb...@us...> - 2018-05-29 19:07:07
|
Revision: 15294 http://sourceforge.net/p/htmlunit/code/15294 Author: rbri Date: 2018-05-29 19:06:34 +0000 (Tue, 29 May 2018) Log Message: ----------- FF60 adjust expectations (wip) Modified Paths: -------------- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementChildNodesTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementClosesItselfTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementDefaultStyleDisplayTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementPropertiesTest.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/HostTypeOfTest.java Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementChildNodesTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementChildNodesTest.java 2018-05-29 19:04:06 UTC (rev 15293) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementChildNodesTest.java 2018-05-29 19:06:34 UTC (rev 15294) @@ -733,7 +733,8 @@ */ @Test @Alerts(DEFAULT = {"1", "0", "1", "1", "0", "1"}, - CHROME = {"3", "2", "2", "3", "2", "2"}) + CHROME = {"3", "2", "2", "3", "2", "2"}, + FF60 = {"3", "2", "2", "3", "2", "2"}) public void isindex() throws Exception { loadPageWithAlerts2(test("isindex")); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementClosesItselfTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementClosesItselfTest.java 2018-05-29 19:04:06 UTC (rev 15293) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementClosesItselfTest.java 2018-05-29 19:06:34 UTC (rev 15294) @@ -14,11 +14,14 @@ */ package com.gargoylesoftware.htmlunit.general; +import static com.gargoylesoftware.htmlunit.BrowserRunner.TestedBrowser.IE; + import org.junit.Test; import org.junit.runner.RunWith; import com.gargoylesoftware.htmlunit.BrowserRunner; import com.gargoylesoftware.htmlunit.BrowserRunner.Alerts; +import com.gargoylesoftware.htmlunit.BrowserRunner.NotYetImplemented; import com.gargoylesoftware.htmlunit.WebDriverTestCase; /** @@ -807,7 +810,8 @@ */ @Test @Alerts(DEFAULT = "0", - CHROME = "1") + CHROME = "1", + FF60 = "1") public void isindex() throws Exception { loadPageWithAlerts2(test("isindex")); } @@ -1673,7 +1677,9 @@ * @throws Exception if the test fails */ @Test - @Alerts("0") + @Alerts(DEFAULT = "0", + IE = "1") + @NotYetImplemented(IE) public void template() throws Exception { loadPageWithAlerts2(test("template")); } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementDefaultStyleDisplayTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementDefaultStyleDisplayTest.java 2018-05-29 19:04:06 UTC (rev 15293) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementDefaultStyleDisplayTest.java 2018-05-29 19:06:34 UTC (rev 15294) @@ -51,7 +51,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void abbr() throws Exception { loadPageWithAlerts2(test("abbr")); @@ -64,7 +65,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void acronym() throws Exception { loadPageWithAlerts2(test("acronym")); @@ -77,7 +79,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void a() throws Exception { loadPageWithAlerts2(test("a")); @@ -102,8 +105,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF60 = {"block", "inline-block"}, FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void applet() throws Exception { loadPageWithAlerts2(test("applet")); @@ -165,7 +168,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void bgsound() throws Exception { loadPageWithAlerts2(test("bgsound")); @@ -204,7 +208,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void bdi() throws Exception { loadPageWithAlerts2(test("bdi")); @@ -217,7 +222,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void bdo() throws Exception { loadPageWithAlerts2(test("bdo")); @@ -230,7 +236,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void big() throws Exception { loadPageWithAlerts2(test("big")); @@ -243,7 +250,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void blink() throws Exception { loadPageWithAlerts2(test("blink")); @@ -280,7 +288,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void b() throws Exception { loadPageWithAlerts2(test("b")); @@ -293,7 +302,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void br() throws Exception { loadPageWithAlerts2(test("br")); @@ -306,7 +316,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline-block"}, + FF52 = {"block", "inline-block"}, + FF60 = {"inline-block", "inline-block"}, IE = {"inline-block", "inline-block"}) public void button() throws Exception { loadPageWithAlerts2(test("button")); @@ -319,7 +330,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void canvas() throws Exception { loadPageWithAlerts2(test("canvas")); @@ -332,7 +344,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-caption"}, - FF = {"block", "table-caption"}, + FF52 = {"block", "table-caption"}, + FF60 = {"table-caption", "table-caption"}, IE = {"table-caption", "table-caption"}) public void caption() throws Exception { loadPageWithAlerts2(test("caption")); @@ -357,7 +370,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void cite() throws Exception { loadPageWithAlerts2(test("cite")); @@ -370,7 +384,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void code() throws Exception { loadPageWithAlerts2(test("code")); @@ -383,7 +398,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void command() throws Exception { loadPageWithAlerts2(test("command")); @@ -408,7 +424,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void dfn() throws Exception { loadPageWithAlerts2(test("dfn")); @@ -436,7 +453,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void del() throws Exception { loadPageWithAlerts2(test("del")); @@ -449,8 +467,7 @@ */ @Test @Alerts(DEFAULT = {"", "block"}, - FF60 = {"block", "inline"}, - FF52 = {"block", "block"}, + FF = {"block", "block"}, IE = {"inline", "inline"}) public void details() throws Exception { loadPageWithAlerts2(test("details")); @@ -463,7 +480,8 @@ */ @Test @Alerts(DEFAULT = {"", "none"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"none", "none"}, IE = {"inline", "inline"}) public void dialog() throws Exception { loadPageWithAlerts2(test("dialog")); @@ -524,7 +542,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void embed() throws Exception { loadPageWithAlerts2(test("embed")); @@ -537,7 +556,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void em() throws Exception { loadPageWithAlerts2(test("em")); @@ -586,7 +606,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void font() throws Exception { loadPageWithAlerts2(test("font")); @@ -623,7 +644,8 @@ */ @Test @Alerts(DEFAULT = {"", "block"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"block", "block"}) public void frame() throws Exception { loadPageWithAlerts2(test("frame")); @@ -768,7 +790,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void iframe() throws Exception { loadPageWithAlerts2(test("iframe")); @@ -781,7 +804,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void q() throws Exception { loadPageWithAlerts2(test("q")); @@ -794,7 +818,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void img() throws Exception { loadPageWithAlerts2(test("img")); @@ -807,7 +832,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void image() throws Exception { loadPageWithAlerts2(test("image")); @@ -820,7 +846,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void ins() throws Exception { loadPageWithAlerts2(test("ins")); @@ -833,7 +860,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void isindex() throws Exception { loadPageWithAlerts2(test("isindex")); @@ -846,7 +874,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void i() throws Exception { loadPageWithAlerts2(test("i")); @@ -859,7 +888,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void kbd() throws Exception { loadPageWithAlerts2(test("kbd")); @@ -870,7 +900,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void keygen() throws Exception { loadPageWithAlerts2(test("keygen")); @@ -883,7 +914,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void label() throws Exception { loadPageWithAlerts2(test("label")); @@ -896,7 +928,8 @@ */ @Test @Alerts(DEFAULT = {"", "block"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void layer() throws Exception { loadPageWithAlerts2(test("layer")); @@ -934,7 +967,8 @@ */ @Test @Alerts(DEFAULT = {"", "list-item"}, - FF = {"block", "list-item"}, + FF52 = {"block", "list-item"}, + FF60 = {"list-item", "list-item"}, IE = {"list-item", "list-item"}) public void li() throws Exception { loadPageWithAlerts2(test("li")); @@ -973,7 +1007,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void map() throws Exception { loadPageWithAlerts2(test("map")); @@ -986,7 +1021,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void mark() throws Exception { loadPageWithAlerts2(test("mark")); @@ -999,7 +1035,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline-block"}, + FF52 = {"block", "inline-block"}, + FF60 = {"inline-block", "inline-block"}, IE = {"block", "block"}) public void marquee() throws Exception { loadPageWithAlerts2(test("marquee")); @@ -1024,7 +1061,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void menuitem() throws Exception { loadPageWithAlerts2(test("menuitem")); @@ -1049,7 +1087,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline-block"}, + FF52 = {"block", "inline-block"}, + FF60 = {"inline-block", "inline-block"}, IE = {"inline", "inline"}) public void meter() throws Exception { loadPageWithAlerts2(test("meter")); @@ -1087,7 +1126,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void nextid() throws Exception { loadPageWithAlerts2(test("nextid")); @@ -1100,7 +1140,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void nobr() throws Exception { loadPageWithAlerts2(test("nobr")); @@ -1137,7 +1178,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void nolayer() throws Exception { loadPageWithAlerts2(test("nolayer")); @@ -1162,7 +1204,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void object() throws Exception { loadPageWithAlerts2(test("object")); @@ -1213,7 +1256,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void output() throws Exception { loadPageWithAlerts2(test("output")); @@ -1275,7 +1319,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline-block"}, + FF52 = {"block", "inline-block"}, + FF60 = {"inline-block", "inline-block"}, IE = {"inline", "inline"}) public void progress() throws Exception { loadPageWithAlerts2(test("progress")); @@ -1301,7 +1346,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "ruby-text"}, + FF52 = {"block", "ruby-text"}, + FF60 = {"ruby-text", "ruby-text"}, IE = {"ruby-text", "ruby-text"}) public void rt() throws Exception { loadPageWithAlerts2(test("rt")); @@ -1314,7 +1360,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "ruby"}, + FF52 = {"block", "ruby"}, + FF60 = {"ruby", "ruby"}, IE = {"ruby", "ruby"}) public void ruby() throws Exception { loadPageWithAlerts2(test("ruby")); @@ -1327,7 +1374,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void s() throws Exception { loadPageWithAlerts2(test("s")); @@ -1340,7 +1388,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void samp() throws Exception { loadPageWithAlerts2(test("samp")); @@ -1377,7 +1426,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline-block"}, + FF52 = {"block", "inline-block"}, + FF60 = {"inline-block", "inline-block"}, IE = {"inline-block", "inline-block"}) public void select() throws Exception { loadPageWithAlerts2(test("select")); @@ -1390,7 +1440,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void small() throws Exception { loadPageWithAlerts2(test("small")); @@ -1403,7 +1454,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void source() throws Exception { loadPageWithAlerts2(test("source")); @@ -1416,7 +1468,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void span() throws Exception { loadPageWithAlerts2(test("span")); @@ -1429,7 +1482,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void strike() throws Exception { loadPageWithAlerts2(test("strike")); @@ -1442,7 +1496,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void strong() throws Exception { loadPageWithAlerts2(test("strong")); @@ -1467,7 +1522,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void sub() throws Exception { loadPageWithAlerts2(test("sub")); @@ -1480,8 +1536,7 @@ */ @Test @Alerts(DEFAULT = {"", "block"}, - FF60 = {"block", "inline"}, - FF52 = {"block", "block"}, + FF = {"block", "block"}, IE = {"inline", "inline"}) public void summary() throws Exception { loadPageWithAlerts2(test("summary")); @@ -1494,7 +1549,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void sup() throws Exception { loadPageWithAlerts2(test("sup")); @@ -1507,7 +1563,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void svg() throws Exception { loadPageWithAlerts2(test("svg")); @@ -1532,7 +1589,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-column"}, - FF = {"block", "table-column"}, + FF52 = {"block", "table-column"}, + FF60 = {"table-column", "table-column"}, IE = {"table-column", "table-column"}) public void col() throws Exception { loadPageWithAlerts2(test("col")); @@ -1545,7 +1603,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-column-group"}, - FF = {"block", "table-column-group"}, + FF52 = {"block", "table-column-group"}, + FF60 = {"table-column-group", "table-column-group"}, IE = {"table-column-group", "table-column-group"}) public void colgroup() throws Exception { loadPageWithAlerts2(test("colgroup")); @@ -1558,7 +1617,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-row-group"}, - FF = {"block", "table-row-group"}, + FF52 = {"block", "table-row-group"}, + FF60 = {"table-row-group", "table-row-group"}, IE = {"table-row-group", "table-row-group"}) public void tbody() throws Exception { loadPageWithAlerts2(test("tbody")); @@ -1571,7 +1631,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-cell"}, - FF = {"block", "table-cell"}, + FF52 = {"block", "table-cell"}, + FF60 = {"table-cell", "table-cell"}, IE = {"table-cell", "table-cell"}) public void td() throws Exception { loadPageWithAlerts2(test("td")); @@ -1584,7 +1645,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-cell"}, - FF = {"block", "table-cell"}, + FF52 = {"block", "table-cell"}, + FF60 = {"table-cell", "table-cell"}, IE = {"table-cell", "table-cell"}) public void th() throws Exception { loadPageWithAlerts2(test("th")); @@ -1597,7 +1659,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-row"}, - FF = {"block", "table-row"}, + FF52 = {"block", "table-row"}, + FF60 = {"table-row", "table-row"}, IE = {"table-row", "table-row"}) public void tr() throws Exception { loadPageWithAlerts2(test("tr")); @@ -1610,7 +1673,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline-block", "inline-block"}) public void textarea() throws Exception { loadPageWithAlerts2(test("textarea")); @@ -1623,7 +1687,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-footer-group"}, - FF = {"block", "table-footer-group"}, + FF52 = {"block", "table-footer-group"}, + FF60 = {"table-footer-group", "table-footer-group"}, IE = {"table-footer-group", "table-footer-group"}) public void tfoot() throws Exception { loadPageWithAlerts2(test("tfoot")); @@ -1636,7 +1701,8 @@ */ @Test @Alerts(DEFAULT = {"", "table-header-group"}, - FF = {"block", "table-header-group"}, + FF52 = {"block", "table-header-group"}, + FF60 = {"table-header-group", "table-header-group"}, IE = {"table-header-group", "table-header-group"}) public void thead() throws Exception { loadPageWithAlerts2(test("thead")); @@ -1649,7 +1715,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void tt() throws Exception { loadPageWithAlerts2(test("tt")); @@ -1662,7 +1729,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void time() throws Exception { loadPageWithAlerts2(test("time")); @@ -1687,7 +1755,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void track() throws Exception { loadPageWithAlerts2(test("track")); @@ -1700,7 +1769,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void u() throws Exception { loadPageWithAlerts2(test("u")); @@ -1725,7 +1795,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void var() throws Exception { loadPageWithAlerts2(test("var")); @@ -1738,7 +1809,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void video() throws Exception { loadPageWithAlerts2(test("video")); @@ -1751,7 +1823,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void wbr() throws Exception { loadPageWithAlerts2(test("wbr")); @@ -1776,7 +1849,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline-block"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline-block", "inline-block"}) public void input() throws Exception { loadPageWithAlerts2(test("input")); @@ -1789,7 +1863,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void data() throws Exception { loadPageWithAlerts2(test("data")); @@ -1802,7 +1877,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void content() throws Exception { loadPageWithAlerts2(test("content")); @@ -1815,7 +1891,8 @@ */ @Test @Alerts(DEFAULT = {"", "inline"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"inline", "inline"}, IE = {"inline", "inline"}) public void picture() throws Exception { loadPageWithAlerts2(test("picture")); @@ -1841,7 +1918,8 @@ */ @Test @Alerts(DEFAULT = {"", "contents"}, - FF = {"block", "inline"}, + FF52 = {"block", "inline"}, + FF60 = {"contents", "contents"}, IE = {"inline", "inline"}) public void slot() throws Exception { loadPageWithAlerts2(test("slot")); Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementPropertiesTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementPropertiesTest.java 2018-05-29 19:04:06 UTC (rev 15293) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/general/ElementPropertiesTest.java 2018-05-29 19:06:34 UTC (rev 15294) @@ -434,19 +434,6 @@ + "onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect," + "onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwheel,outerText," + "spellcheck,style,tabIndex,title,translate", - FF60 = "accessKey,accessKeyLabel,blur(),click(),contentEditable,contextMenu,dataset,dir," - + "draggable,focus(),hidden,innerText,isContentEditable,itemId,itemProp,itemRef,itemScope," - + "itemType,itemValue," - + "lang,offsetHeight,offsetLeft,offsetParent,offsetTop,offsetWidth,onabort,onblur,oncanplay," - + "oncanplaythrough,onchange,onclick,oncontextmenu,oncopy,oncut,ondblclick,ondrag,ondragend," - + "ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror," - + "onfocus,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata," - + "onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup," - + "onmozfullscreenchange,onmozfullscreenerror,onmozpointerlockchange,onmozpointerlockerror,onpaste," - + "onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking," - + "onselect,onshow,onstalled,onsubmit,onsuspend,ontimeupdate,onvolumechange,onwaiting,properties," - + "spellcheck,style,tabIndex," - + "title", FF52 = "accessKey,accessKeyLabel,blur(),click(),contentEditable,contextMenu,dataset,dir," + "draggable,focus(),hidden,innerText,isContentEditable," + "lang,offsetHeight,offsetLeft,offsetParent,offsetTop,offsetWidth,onabort," @@ -462,6 +449,26 @@ + "onselect,onselectstart,onshow,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,ontransitionend," + "onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart," + "onwebkittransitionend,spellcheck,style,tabIndex,title", + FF60 = "accessKey,accessKeyLabel,blur(),click(),contentEditable,contextMenu,dataset,dir," + + "draggable,focus(),hidden,innerText,isContentEditable," + + "lang,offsetHeight,offsetLeft,offsetParent,offsetTop,offsetWidth,onabort," + + "onanimationcancel,onanimationend,onanimationiteration,onanimationstart,onauxclick,onblur,oncanplay," + + "oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncopy,oncut,ondblclick,ondrag,ondragend," + + "ondragenter,ondragexit,ondragleave,ondragover,ondragstart,ondrop," + + "ondurationchange,onemptied,onended,onerror," + + "onfocus,ongotpointercapture,oninput,oninvalid,onkeydown,onkeypress,onkeyup," + + "onload,onloadeddata,onloadedmetadata,onloadend," + + "onloadstart,onlostpointercapture,onmousedown,onmouseenter,onmouseleave," + + "onmousemove,onmouseout,onmouseover,onmouseup," + + "onmozfullscreenchange,onmozfullscreenerror,onpaste," + + "onpause,onplay,onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave," + + "onpointermove,onpointerout,onpointerover,onpointerup,onprogress,onratechange,onreset," + + "onresize,onscroll,onseeked,onseeking," + + "onselect,onselectstart,onshow,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle," + + "ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onvolumechange,onwaiting," + + "onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart," + + "onwebkittransitionend,onwheel,spellcheck,style,tabIndex," + + "title", IE = "accessKey,applyElement(),blur(),canHaveChildren,canHaveHTML,children,classList,className," + "clearAttributes(),click(),componentFromPoint(),contains(),contentEditable,createControlRange()," + "currentStyle,dataset,dir,disabled,dragDrop(),draggable,focus(),getAdjacentText()," @@ -533,16 +540,21 @@ + "requestPointerLock(),scroll(),scrollBy(),scrollHeight,scrollIntoView(),scrollLeft,scrollLeftMax," + "scrollTo(),scrollTop,scrollTopMax,scrollWidth,setAttribute(),setAttributeNode()," + "setAttributeNodeNS(),setAttributeNS(),setCapture(),tagName,webkitMatchesSelector()", - FF60 = "attributes,childElementCount,children,classList,className,clientHeight,clientLeft,clientTop," + FF60 = "animate(),append(),attributes,childElementCount,children,classList,className," + + "clientHeight,clientLeft,clientTop," + "clientWidth,closest(),firstElementChild,getAttribute(),getAttributeNames(),getAttributeNode()," + "getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects()," + "getElementsByClassName(),getElementsByTagName(),getElementsByTagNameNS(),hasAttribute()," - + "hasAttributeNS(),hasAttributes(),id,innerHTML,insertAdjacentHTML(),lastElementChild,matches()," - + "mozMatchesSelector(),mozRequestFullScreen(),mozRequestPointerLock(),onwheel,outerHTML," - + "querySelector(),querySelectorAll(),releaseCapture(),removeAttribute(),removeAttributeNode()," - + "removeAttributeNS(),scroll(),scrollBy(),scrollHeight,scrollIntoView(),scrollLeft,scrollLeftMax," + + "hasAttributeNS(),hasAttributes(),hasPointerCapture(),id,innerHTML,insertAdjacentElement()," + + "insertAdjacentHTML(),insertAdjacentText(),lastElementChild,localName,matches()," + + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,outerHTML,prefix,prepend()," + + "querySelector(),querySelectorAll(),releaseCapture(),releasePointerCapture(),removeAttribute()," + + "removeAttributeNode()," + + "removeAttributeNS(),requestPointerLock(),scroll(),scrollBy(),scrollHeight,scrollIntoView()," + + "scrollLeft,scrollLeftMax," + "scrollTo(),scrollTop,scrollTopMax,scrollWidth,setAttribute(),setAttributeNode()," - + "setAttributeNodeNS(),setAttributeNS(),setCapture(),tagName,webkitMatchesSelector()", + + "setAttributeNodeNS(),setAttributeNS(),setCapture(),setPointerCapture()," + + "tagName,webkitMatchesSelector()", IE = "childElementCount,clientHeight,clientLeft,clientTop,clientWidth,firstElementChild,getAttribute()," + "getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects()," + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),lastElementChild," @@ -585,18 +597,6 @@ + "setAttributeNode()," + "setAttributeNodeNS(),setAttributeNS(),setPointerCapture(),shadowRoot,slot,tagName," + "webkitMatchesSelector(),webkitRequestFullScreen(),webkitRequestFullscreen()", - FF60 = "attributes,classList,className,clientHeight,clientLeft,clientTop," - + "clientWidth,closest(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS()," - + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName()," - + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes(),id," - + "innerHTML,insertAdjacentHTML(),matches()," - + "mozMatchesSelector(),mozRequestFullScreen(),mozRequestPointerLock(),nextElementSibling," - + "onwheel,outerHTML," - + "previousElementSibling,releaseCapture(),remove(),removeAttribute(),removeAttributeNode()," - + "removeAttributeNS(),scroll(),scrollBy(),scrollHeight," - + "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth," - + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),tagName," - + "webkitMatchesSelector()", FF52 = "after(),animate(),attributes,before(),classList,className,clientHeight,clientLeft,clientTop," + "clientWidth,closest(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS()," + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName()," @@ -608,6 +608,19 @@ + "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth," + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS(),setCapture(),tagName," + "webkitMatchesSelector()", + FF60 = "after(),animate(),attributes,before(),classList,className,clientHeight,clientLeft,clientTop," + + "clientWidth,closest(),getAttribute(),getAttributeNames(),getAttributeNode(),getAttributeNodeNS()," + + "getAttributeNS(),getBoundingClientRect(),getClientRects(),getElementsByClassName()," + + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),hasAttributes()," + + "hasPointerCapture(),id," + + "innerHTML,insertAdjacentElement(),insertAdjacentHTML(),insertAdjacentText(),localName,matches()," + + "mozMatchesSelector(),mozRequestFullScreen(),namespaceURI,nextElementSibling,outerHTML,prefix," + + "previousElementSibling,releaseCapture(),releasePointerCapture(),remove(),removeAttribute()," + + "removeAttributeNode(),removeAttributeNS(),replaceWith(),requestPointerLock()," + + "scroll(),scrollBy(),scrollHeight," + + "scrollIntoView(),scrollLeft,scrollLeftMax,scrollTo(),scrollTop,scrollTopMax,scrollWidth," + + "setAttribute(),setAttributeNode(),setAttributeNodeNS(),setAttributeNS()," + + "setCapture(),setPointerCapture(),tagName,webkitMatchesSelector()", IE = "childElementCount,clientHeight,clientLeft,clientTop,clientWidth,firstElementChild,getAttribute()," + "getAttributeNode(),getAttributeNodeNS(),getAttributeNS(),getBoundingClientRect(),getClientRects()," + "getElementsByTagName(),getElementsByTagNameNS(),hasAttribute(),hasAttributeNS(),lastElementChild," @@ -645,14 +658,15 @@ + "composed,composedPath(),currentTarget,defaultPrevented,eventPhase,initEvent(),isTrusted," + "NONE,path,preventDefault(),returnValue,srcElement,stopImmediatePropagation(),stopPropagation()," + "target,timeStamp,type", - FF60 = "ALT_MASK,AT_TARGET,bubbles,BUBBLING_PHASE,cancelable,CAPTURING_PHASE,CONTROL_MASK,currentTarget," + FF52 = "ALT_MASK,AT_TARGET,bubbles,BUBBLING_PHASE,cancelable,cancelBubble,CAPTURING_PHASE,composed," + + "CONTROL_MASK,currentTarget," + "defaultPrevented,eventPhase,explicitOriginalTarget,getPreventDefault(),initEvent(),isTrusted," + "META_MASK,NONE,originalTarget,preventDefault(),SHIFT_MASK,stopImmediatePropagation()," + "stopPropagation(),target,timeStamp," + "type", - FF52 = "ALT_MASK,AT_TARGET,bubbles,BUBBLING_PHASE,cancelable,cancelBubble,CAPTURING_PHASE,composed," - + "CONTROL_MASK,currentTarget," - + "defaultPrevented,eventPhase,explicitOriginalTarget,getPreventDefault(),initEvent(),isTrusted," + FF60 = "ALT_MASK,AT_TARGET,bubbles,BUBBLING_PHASE,cancelable,cancelBubble," + + "CAPTURING_PHASE,composed,composedPath(),CONTROL_MASK,currentTarget," + + "defaultPrevented,eventPhase,explicitOriginalTarget,initEvent(),isTrusted," + "META_MASK,NONE,originalTarget,preventDefault(),SHIFT_MASK,stopImmediatePropagation()," + "stopPropagation(),target,timeStamp," + "type", @@ -711,35 +725,6 @@ + "webkitRequestAnimationFrame(),webkitRequestFileSystem()," + "webkitResolveLocalFileSystemURL(),webkitStorageInfo," + "window", - FF60 = "addEventListener(),alert(),applicationCache,atob(),blur(),btoa(),caches,cancelAnimationFrame()," - + "captureEvents(),clearInterval(),clearTimeout(),close(),closed,confirm(),console,content," - + "createImageBitmap(),crypto,devicePixelRatio,dispatchEvent(),document,dump()," - + "external,fetch(),find()," - + "focus(),frameElement,frames,fullScreen,getComputedStyle(),getDefaultComputedStyle()," - + "getSelection(),history,indexedDB,innerHeight,innerWidth," - + "InstallTrigger,length,localStorage,location,locationbar,matchMedia(),menubar,moveBy(),moveTo()," - + "mozInnerScreenX,mozInnerScreenY,mozPaintCount,name,navigator,onabort," - + "onafterprint,onbeforeprint,onbeforeunload,onblur," - + "oncanplay,oncanplaythrough,onchange,onclick,oncontextmenu,ondblclick,ondevicelight," - + "ondevicemotion,ondeviceorientation,ondeviceproximity,ondrag,ondragend,ondragenter,ondragleave," - + "ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus," - + "onhashchange,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onlanguagechange,onload()," - + "onloadeddata,onloadedmetadata,onloadstart,onmessage,onmousedown," - + "onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmozfullscreenchange," - + "onmozfullscreenerror,onmozpointerlockchange,onmozpointerlockerror,onoffline,ononline,onpagehide," - + "onpageshow,onpause,onplay,onplaying," - + "onpopstate,onprogress," - + "onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onshow,onstalled,onstorage," - + "onsubmit," - + "onsuspend,ontimeupdate,onunload,onuserproximity,onvolumechange,onwaiting,onwheel,open()," - + "opener,outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance," - + "personalbar,postMessage(),print(),process(),prompt(),releaseEvents(),removeEventListener()," - + "requestAnimationFrame(),resizeBy(),resizeTo(),screen,screenX,screenY,scroll(),scrollbars," - + "scrollBy(),scrollByLines(),scrollByPages(),scrollMaxX,scrollMaxY,scrollTo(),scrollX,scrollY,self," - + "sessionStorage,setInterval(),setResizable(),setTimeout(),showModalDialog(),sidebar," - + "sizeToContent(),sortFunction(),status,statusbar,stop(),test(),toolbar,top," - + "updateCommands()," - + "window", FF52 = "addEventListener(),alert(),applicationCache,atob(),blur(),btoa(),caches,cancelAnimationFrame()," + "captureEvents(),clearInterval(),clearTimeout(),close(),closed,confirm(),content," + "createImageBitmap(),crypto,devicePixelRatio,dispatchEvent(),document,dump()," @@ -771,6 +756,34 @@ + "setResizable(),setTimeout(),showModalDialog(),sidebar,sizeToContent()," + "sortFunction(),speechSynthesis," + "status,statusbar,stop(),test(),toolbar,top,updateCommands(),window", + FF60 = "addEventListener(),alert(),applicationCache,atob(),blur(),btoa(),caches,cancelAnimationFrame()," + + "cancelIdleCallback(),captureEvents(),clearInterval(),clearTimeout(),close(),closed,confirm()," + + "createImageBitmap(),crypto,devicePixelRatio,dispatchEvent(),document,dump(),external,fetch()," + + "find(),focus(),frameElement,frames,fullScreen,getComputedStyle(),getDefaultComputedStyle()," + + "getSelection(),history,indexedDB,innerHeight,innerWidth,isSecureContext,length,localStorage," + + "location,locationbar,matchMedia(),menubar,moveBy(),moveTo(),mozInnerScreenX,mozInnerScreenY," + + "mozPaintCount,name,navigator,onabort,onabsolutedeviceorientation,onafterprint,onanimationcancel," + + "onanimationend,onanimationiteration,onanimationstart,onauxclick,onbeforeprint,onbeforeunload," + + "onblur,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,ondblclick,ondevicelight," + + "ondevicemotion,ondeviceorientation,ondeviceproximity,ondrag,ondragend,ondragenter,ondragexit," + + "ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus," + + "ongotpointercapture,onhashchange,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onlanguagechange," + + "onload(),onloadeddata,onloadedmetadata,onloadend,onloadstart,onlostpointercapture,onmessage," + + "onmessageerror,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover," + + "onmouseup,onmozfullscreenchange,onmozfullscreenerror,onoffline,ononline,onpagehide,onpageshow," + + "onpause,onplay,onplaying,onpointercancel,onpointerdown,onpointerenter,onpointerleave,onpointermove," + + "onpointerout,onpointerover,onpointerup,onpopstate,onprogress,onratechange,onreset,onresize," + + "onscroll,onseeked,onseeking,onselect,onselectstart,onshow,onstalled,onstorage,onsubmit,onsuspend," + + "ontimeupdate,ontoggle,ontransitioncancel,ontransitionend,ontransitionrun,ontransitionstart,onunload," + + "onuserproximity,onvolumechange,onvrdisplayactivate,onvrdisplayconnect,onvrdisplaydeactivate," + + "onvrdisplaydisconnect,onvrdisplaypresentchange,onwaiting,onwebkitanimationend," + + "onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,open(),opener," + + "origin,outerHeight,outerWidth,pageXOffset,pageYOffset,parent,performance,personalbar,postMessage()," + + "print(),process(),prompt(),releaseEvents(),removeEventListener(),requestAnimationFrame()," + + "requestIdleCallback(),resizeBy(),resizeTo(),screen,screenX,screenY,scroll(),scrollbars," + + "scrollBy(),scrollByLines(),scrollByPages(),scrollMaxX,scrollMaxY,scrollTo(),scrollX,scrollY," + + "self,sessionStorage,setInterval(),setResizable(),setTimeout(),sidebar,sizeToContent()," + + "sortFunction(),speechSynthesis,status,statusbar,stop(),test(),toolbar,top,updateCommands(),window", IE = "addEventListener(),alert(),animationStartTime,applicationCache,atob(),blur(),btoa()," + "cancelAnimationFrame(),captureEvents(),clearImmediate(),clearInterval(),clearTimeout()," + "clientInformation,clipboardData,close(),closed,confirm(),console," @@ -862,9 +875,6 @@ @Alerts(DEFAULT = "charset,coords,download,hash,host,hostname,href,hreflang,name,origin,password,pathname,ping," + "port,protocol,referrerPolicy,rel,relList,rev,search,shape,target,text,type," + "username", - FF60 = "charset,coords,download,hash,host,hostname,href,hreflang,name,origin,password,pathname,ping," - + "port,protocol,rel,relList,rev,search,shape,target,text,type," - + "username", IE = "charset,coords,hash,host,hostname,href,hreflang,Methods,mimeType,name,nameProp,pathname,port," + "protocol,protocolLong,rel,rev,search,shape,target,text,type," + "urn", @@ -900,7 +910,8 @@ EDGE = "align,alt,altHtml,archive,BaseHref,border,code,codeBase,codeType,contentDocument,data,declare," + "form,height,hspace,name,object,standby,type,useMap,vspace," + "width", - CHROME = "-") + CHROME = "-", + FF60 = "-") @NotYetImplemented({FF, IE}) public void applet() throws Exception { test("applet"); @@ -914,8 +925,6 @@ @Test @Alerts(DEFAULT = "alt,coords,download,hash,host,hostname,href,noHref,origin,password,pathname,ping,port," + "protocol,referrerPolicy,rel,relList,search,shape,target,username", - FF60 = "alt,coords,download,hash,host,hostname,href,noHref,origin,password,pathname,ping,port,protocol," - + "rel,relList,search,shape,target,username", IE = "alt,coords,hash,host,hostname,href,noHref,pathname,port,protocol,rel,search,shape,target", EDGE = "alt,coords,hash,host,hostname,href,noHref,pathname,port,protocol,rel,search,shape,target") @NotYetImplemented @@ -961,7 +970,7 @@ + "seekable,seeking,setMediaKeys(),setSinkId(),sinkId,src,srcObject,textTracks," + "volume,webkitAudioDecodedByteCount," + "webkitVideoDecodedByteCount", - FF60 = "addTextTrack(),autoplay,buffered,canPlayType(),controls,crossOrigin,currentSrc,currentTime," + FF52 = "addTextTrack(),autoplay,buffered,canPlayType(),controls,crossOrigin,currentSrc,currentTime," + "defaultMuted,defaultPlaybackRate,duration,ended,error,fastSeek(),HAVE_CURRENT_DATA," + "HAVE_ENOUGH_DATA,HAVE_FUTURE_DATA,HAVE_METADATA,HAVE_NOTHING,load(),loop,mediaKeys,mozAudioCaptured," + "mozAutoplayEnabled,mozCaptureStream()," @@ -968,17 +977,17 @@ + "mozCaptureStreamUntilEnded()," + "mozFragmentEnd,mozGetMetadata(),mozPreservesPitch,mozSrcObject,muted,NETWORK_EMPTY,NETWORK_IDLE," + "NETWORK_LOADING,NETWORK_NO_SOURCE,networkState,onencrypted," - + "pause(),paused,play(),playbackRate,played,preload," + + "onwaitingforkey,pause(),paused,play(),playbackRate,played,preload," + "readyState,seekable,seeking,setMediaKeys(),src,srcObject,textTracks,volume", - FF52 = "addTextTrack(),autoplay,buffered,canPlayType(),controls,crossOrigin,currentSrc,currentTime," + FF60 = "addTextTrack(),autoplay,buffered,canPlayType(),controls,crossOrigin,currentSrc,currentTime," + "defaultMuted,defaultPlaybackRate,duration,ended,error,fastSeek(),HAVE_CURRENT_DATA," + "HAVE_ENOUGH_DATA,HAVE_FUTURE_DATA,HAVE_METADATA,HAVE_NOTHING,load(),loop,mediaKeys,mozAudioCaptured," - + "mozAutoplayEnabled,mozCaptureStream()," + + "mozCaptureStream()," + "mozCaptureStreamUntilEnded()," - + "mozFragmentEnd,mozGetMetadata(),mozPreservesPitch,mozSrcObject,muted,NETWORK_EMPTY,NETWORK_IDLE," - + "NETWORK_LOADING,NETWORK_NO_SOURCE,networkState,onencrypted," - + "onwaitingforkey,pause(),paused,play(),playbackRate,played,preload," - + "readyState,seekable,seeking,setMediaKeys(),src,srcObject,textTracks,volume", + + "mozFragmentEnd,mozGetMetadata(),mozPreservesPitch,muted,NETWORK_EMPTY,NETWORK_IDLE," + + "NETWORK_LOADING,NETWORK_NO_SOURCE,networkState,onencrypted,onwaitingforkey," + + "pause(),paused,play(),playbackRate,played,preload," + + "readyState,seekable,seeking,seekToNextFrame(),setMediaKeys(),src,srcObject,textTracks,volume", IE = "addTextTrack(),audioTracks,autobuffer,autoplay,buffered,canPlayType(),controls,currentSrc," + "currentTime,defaultPlaybackRate,duration,ended,error,HAVE_CURRENT_DATA,HAVE_ENOUGH_DATA," + "HAVE_FUTURE_DATA,HAVE_METADATA,HAVE_NOTHING,initialTime,load(),loop,msPlayToDisabled," @@ -1104,10 +1113,14 @@ + "onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate," + "onrejectionhandled,onstorage,onunhandledrejection,onunload," + "text,vLink", - FF = "aLink,background,bgColor,link,onafterprint,onbeforeprint,onbeforeunload,onhashchange," + FF52 = "aLink,background,bgColor,link,onafterprint,onbeforeprint,onbeforeunload,onhashchange," + "onlanguagechange,onmessage," + "onoffline,ononline,onpagehide,onpageshow,onpopstate,onstorage,onunload,text," + "vLink", + FF60 = "aLink,background,bgColor,link,onafterprint,onbeforeprint,onbeforeunload,onhashchange," + + "onlanguagechange,onmessage,onmessageerror," + + "onoffline,ononline,onpagehide,onpageshow,onpopstate,onstorage,onunload,text," + + "vLink", IE = "aLink,background,bgColor,bgProperties,bottomMargin,createTextRange(),leftMargin,link,noWrap," + "onafterprint,onbeforeprint,onbeforeunload,onhashchange,onmessage,onoffline,ononline,onpagehide," + "onpageshow,onpopstate,onresize,onstorage,onunload,rightMargin,scroll,text,topMargin," @@ -1152,14 +1165,13 @@ @Test @Alerts(CHROME = "autofocus,checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate," + "formTarget,labels,name,reportValidity(),setCustomValidity(),type,validationMessage,validity," - + "value," - + "willValidate", - FF60 = "autofocus,checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate," - + "formTarget,name,setCustomValidity(),type,validationMessage,validity,value," - + "willValidate", + + "value,willValidate", FF52 = "autofocus,checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate," + "formTarget,name,reportValidity(),setCustomValidity(),type,validationMessage,validity,value," + "willValidate", + FF60 = "autofocus,checkValidity(),disabled,form,formAction,formEnctype,formMethod,formNoValidate," + + "formTarget,labels,name,reportValidity(),setCustomValidity(),type,validationMessage,validity," + + "value,willValidate", IE = "autofocus,checkValidity(),createTextRange(),form,formAction,formEnctype,formMethod," + "formNoValidate,formTarget,name,setCustomValidity(),status,type,validationMessage,validity,value," + "willValidate", @@ -1301,9 +1313,8 @@ * @throws Exception if the test fails */ @Test - @Alerts(DEFAULT = "-", - FF52 = "open", - CHROME = "open") + @Alerts(DEFAULT = "open", + IE = "-") public void details() throws Exception { test("details"); } @@ -1409,8 +1420,6 @@ @Test @Alerts(DEFAULT = "checkValidity(),disabled,elements,form,name,reportValidity(),setCustomValidity(),type," + "validationMessage,validity,willValidate", - FF60 = "checkValidity(),disabled,elements,form,name,setCustomValidity(),type,validationMessage,validity," - + "willValidate", IE = "align,checkValidity(),form,setCustomValidity(),validationMessage,validity,willValidate", EDGE = "align,checkValidity(),disabled,form,setCustomValidity(),validationMessage,validity,willValidate") @NotYetImplemented @@ -1460,9 +1469,6 @@ @Alerts(DEFAULT = "acceptCharset,action,autocomplete,checkValidity(),elements,encoding,enctype,length,method,name," + "noValidate,reportValidity(),reset(),submit()," + "target", - FF60 = "acceptCharset,action,autocomplete,checkValidity(),elements,encoding,enctype,length,method,name," - + "noValidate,reset(),submit()," - + "target", IE = "acceptCharset,action,autocomplete,checkValidity(),elements,encoding,enctype,item(),length,method," + "name,namedItem(),noValidate,reset(),submit()," + "target", @@ -1515,10 +1521,14 @@ + "onmessage,onmessageerror,onoffline,ononline,onpagehide," + "onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload," + "rows", - FF = "cols,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage," + FF52 = "cols,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage," + "onoffline,ononline," + "onpagehide,onpageshow,onpopstate,onstorage,onunload,"... [truncated message content] |