Skip to content

Commit 1e0e21e

Browse files
committed
Test WIP
1 parent 65a88c6 commit 1e0e21e

File tree

4 files changed

+5
-116
lines changed

4 files changed

+5
-116
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ concurrency:
88

99
on:
1010
push:
11-
branches: [ master ]
11+
branches: [ master, bug/fix_edge_tests ]
1212
pull_request:
1313
branches: [ master ]
1414
types: [opened, reopened, synchronize, labeled]
@@ -32,10 +32,7 @@ jobs:
3232
matrix:
3333
java: [ '21' ]
3434
config:
35-
- { name: Linux, os: ubuntu-latest, native: gtk.linux.x86_64 }
3635
- { name: Windows, os: windows-latest, native: win32.win32.x86_64 }
37-
- { name: MacOS x86, os: macos-13, native: cocoa.macosx.x86_64 }
38-
- { name: MacOS ARM, os: macos-latest, native: cocoa.macosx.aarch64 }
3936
name: Verify ${{ matrix.config.name }} with Java-${{ matrix.java }}
4037
runs-on: ${{ matrix.config.os }}
4138
steps:
@@ -54,7 +51,7 @@ jobs:
5451
run: |
5552
git lfs pull --include='/binaries/org.eclipse.swt.win32.win32.x86_64/WebView2Loader.dll'
5653
- name: Set up Java ${{ matrix.java }}
57-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
54+
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.1
5855
with:
5956
java-version: ${{ matrix.java }}
6057
distribution: 'temurin'

bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WebBrowser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ abstract class WebBrowser {
3030
StatusTextListener[] statusTextListeners = new StatusTextListener[0];
3131
TitleListener[] titleListeners = new TitleListener[0];
3232
VisibilityWindowListener[] visibilityWindowListeners = new VisibilityWindowListener[0];
33-
boolean jsEnabledOnNextPage = true, jsEnabled = true;
33+
boolean jsEnabledOnNextPage = true;
34+
boolean jsEnabled = true;
3435
int nextFunctionIndex = 1;
3536
Object evaluateResult;
3637

bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Edge.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ private String getDataDir(Display display) {
638638

639639
@Override
640640
public void create(Composite parent, int style) {
641+
// test
641642
createInstance(0);
642643
}
643644

tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/AllNonBrowserTests.java

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)