Skip to content

Fix setTextContainingScript Test #1466 #2175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,6 @@ public void test_setText() {
*/
@Test
public void test_setTextContainingScript_applicationLayerProgressListenerMustSeeUpToDateDom() {
assumeFalse("Toggling on Edge since I20250216-1800, see https://github.com/eclipse-platform/eclipse.platform.swt/issues/1843", isEdge);
AtomicBoolean completed = new AtomicBoolean();
browser.addProgressListener(ProgressListener.completedAdapter(event -> {
String script = """
Expand All @@ -1162,7 +1161,7 @@ public void test_setTextContainingScript_applicationLayerProgressListenerMustSee
browser.setText("""
<html>
<head>
<script src=\"file:///does/not/really/needs/to/exist.js\"></script>
<script>console.log("test");</script>
</head>
<body>
<h1>Hello, World!</h1>
Expand Down
Loading