Skip to content

Commit

Permalink
disable w3c compat for more browser versions
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Apr 21, 2023
1 parent e861947 commit 5cedbb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/core-web-browserstack/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func runTest(parentCtx context.Context, client *browserstack.Client, browser bro
caps["browserstack.local"] = "true" // suspected to have no effect
}
} else if browser.Browser == "chrome" {
if browserVersion != nil && browserVersion.Segments()[0] < 50 {
if browserVersion != nil && browserVersion.Segments()[0] < 58 {
w3cCompatible = false
}
} else if browser.Browser == "ie" {
Expand Down

0 comments on commit 5cedbb5

Please sign in to comment.