We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e28cb1 commit d945898Copy full SHA for d945898
playwright/src/test/java/com/microsoft/playwright/TestWorkers.java
@@ -194,7 +194,7 @@ void shouldFormatNumberUsingContextLocale() {
194
Worker worker = page.waitForWorker(() -> page.evaluate(
195
"() => new Worker(URL.createObjectURL(new Blob(['console.log(1)'], {type: 'application/javascript'})))"));
196
// https://github.com/microsoft/playwright/issues/38919
197
- String expected = isFirefox() ? "10.000,2" : "10\u00A0000,2";
+ String expected = isFirefox() ? "10,000.2" : "10\u00A0000,2";
198
assertEquals(expected, worker.evaluate("() => (10000.20).toLocaleString()"));
199
context.close();
200
}
0 commit comments