Skip to content

Commit 703e6b0

Browse files
committed
Firefox 133
1 parent eb586d0 commit 703e6b0

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

src/main/java/org/htmlunit/css/StyleAttributes.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2077,18 +2077,18 @@ public enum Definition {
20772077
/** The style property {@code -moz-padding-start}. */
20782078
MOZ_PADDING_START__("-moz-padding-start", "-moz-padding-start", ff("0px")),
20792079

2080-
/** The style property {@code MozPerspectiveOrigin}. */
2081-
MOZ_PERSPECTIVE_ORIGIN("MozPerspectiveOrigin", "-moz-perspective-origin", ffLatest("622px 164px")),
2082-
2083-
/** The style property {@code -moz-perspective-origin}. */
2084-
MOZ_PERSPECTIVE_ORIGIN__("-moz-perspective-origin", "-moz-perspective-origin", ffLatest("622px 164px")),
2085-
20862080
/** The style property {@code MozPerspective}. */
20872081
MOZ_PERSPECTIVE("MozPerspective", "-moz-perspective", ffLatest("none")),
20882082

20892083
/** The style property {@code -moz-perspective}. */
20902084
MOZ_PERSPECTIVE__("-moz-perspective", "-moz-perspective", ffLatest("none")),
20912085

2086+
/** The style property {@code MozPerspectiveOrigin}. */
2087+
MOZ_PERSPECTIVE_ORIGIN("MozPerspectiveOrigin", "-moz-perspective-origin", ffLatest("622px 164px")),
2088+
2089+
/** The style property {@code -moz-perspective-origin}. */
2090+
MOZ_PERSPECTIVE_ORIGIN__("-moz-perspective-origin", "-moz-perspective-origin", ffLatest("622px 164px")),
2091+
20922092
/** The style property {@code MozTabSize}. */
20932093
MOZ_TAB_SIZE("MozTabSize", "-moz-tab-size", ff("8")),
20942094

src/test/java/org/htmlunit/BrowserVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class BrowserVersionTest {
3838
*/
3939
@Test
4040
public void getBrowserVersionNumeric() {
41-
assertEquals(132, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
41+
assertEquals(133, BrowserVersion.FIREFOX.getBrowserVersionNumeric());
4242
assertEquals(128, BrowserVersion.FIREFOX_ESR.getBrowserVersionNumeric());
4343
assertEquals(131, BrowserVersion.CHROME.getBrowserVersionNumeric());
4444
assertEquals(131, BrowserVersion.EDGE.getBrowserVersionNumeric());

src/test/java/org/htmlunit/archunit/Architecture2Test.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ else if (oneTests.size() == 0) {
163163
.that()
164164
.doNotHaveFullyQualifiedName("org.htmlunit.BrowserVersion")
165165
.and().doNotHaveFullyQualifiedName("org.htmlunit.javascript.configuration.AbstractJavaScriptConfiguration")
166+
.and().doNotHaveFullyQualifiedName("org.htmlunit.javascript.host.worker.DedicatedWorkerGlobalScope")
167+
166168
.and().doNotHaveFullyQualifiedName("org.htmlunit.javascript.host.intl.DateTimeFormat")
167169
.and().doNotHaveFullyQualifiedName("org.htmlunit.javascript.host.intl.NumberFormat")
168170
.should().callMethod(BrowserVersion.class, "isFirefoxESR", new Class[] {});

src/test/java/org/htmlunit/general/DedicatedWorkerGlobalScopeClassNameTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import org.htmlunit.junit.BrowserRunner;
2424
import org.htmlunit.junit.BrowserRunner.Alerts;
2525
import org.htmlunit.junit.BrowserRunner.HtmlUnitNYI;
26-
import org.htmlunit.junit.BrowserRunner.NotYetImplemented;
2726
import org.htmlunit.util.MimeType;
2827
import org.junit.Test;
2928
import org.junit.runner.RunWith;

src/test/java/org/htmlunit/general/DedicatedWorkerGlobalScopeTypeOfTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6711,6 +6711,7 @@ public void selection() throws Exception {
67116711
@Test
67126712
@Alerts(DEFAULT = "undefined",
67136713
FF = "function")
6714+
@HtmlUnitNYI(FF = "undefined")
67146715
public void serviceWorker() throws Exception {
67156716
test("ServiceWorker");
67166717
}
@@ -6721,6 +6722,7 @@ public void serviceWorker() throws Exception {
67216722
@Test
67226723
@Alerts(DEFAULT = "undefined",
67236724
FF = "function")
6725+
@HtmlUnitNYI(FF = "undefined")
67246726
public void serviceWorkerContainer() throws Exception {
67256727
test("ServiceWorkerContainer");
67266728
}

src/test/java/org/htmlunit/javascript/host/worker/WorkerNavigatorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public void product() throws Exception {
164164
+ "(KHTML,\\slike\\sGecko)\\sChrome/131.0.0.0\\sSafari/537.36",
165165
EDGE = "Mozilla/5.0\\s(Windows\\sNT\\s10.0;\\sWin64;\\sx64)\\sAppleWebKit/537.36\\s"
166166
+ "(KHTML,\\slike\\sGecko)\\sChrome/131.0.0.0\\sSafari/537.36\\sEdg/131.0.0.0",
167-
FF = "Mozilla/5.0\\s(Windows\\sNT\\s10.0;\\sWin64;\\sx64;\\srv:132.0)\\sGecko/20100101\\sFirefox/132.0",
167+
FF = "Mozilla/5.0\\s(Windows\\sNT\\s10.0;\\sWin64;\\sx64;\\srv:133.0)\\sGecko/20100101\\sFirefox/133.0",
168168
FF_ESR = "Mozilla/5.0\\s(Windows\\sNT\\s10.0;\\sWin64;\\sx64;\\srv:128.0)\\sGecko/20100101\\sFirefox/128.0")
169169
public void userAgent() throws Exception {
170170
final String workerJs = "postMessage(navigator.userAgent);\n";

0 commit comments

Comments
 (0)