You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A number property that determines the zoom level for this web contents.
320
-
///The original size is 0 and each increment above or below represents zooming 20% larger or smaller to default limits of 300% and 50% of original size, respectively.
Copy file name to clipboardExpand all lines: src/ElectronNET.IntegrationTests/Tests/WebContentsTests.cs
-38Lines changed: 0 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -94,16 +94,6 @@ public async Task GetSetZoomFactor_check()
94
94
ok.Should().Be(2.0);
95
95
}
96
96
97
-
[Fact(Timeout=20000)]
98
-
publicasyncTaskZoomFactorProperty_check()
99
-
{
100
-
varok=fx.MainWindow.WebContents.ZoomFactor;
101
-
ok.Should().Be(1.0);
102
-
fx.MainWindow.WebContents.ZoomFactor=2.0;
103
-
ok=fx.MainWindow.WebContents.ZoomFactor;
104
-
ok.Should().Be(2.0);
105
-
}
106
-
107
97
[SkippableFact(Timeout=20000)]
108
98
publicasyncTaskGetSetZoomLevel_check()
109
99
{
@@ -117,16 +107,6 @@ public async Task GetSetZoomLevel_check()
117
107
ok.Should().Be(2);
118
108
}
119
109
120
-
[Fact(Timeout=20000)]
121
-
publicasyncTaskZoomLevelProperty_check()
122
-
{
123
-
varok=fx.MainWindow.WebContents.ZoomLevel;
124
-
ok.Should().Be(0);
125
-
fx.MainWindow.WebContents.ZoomLevel=2;
126
-
ok=fx.MainWindow.WebContents.ZoomLevel;
127
-
ok.Should().Be(2);
128
-
}
129
-
130
110
[SkippableFact(Timeout=20000)]
131
111
publicasyncTaskDevTools_check()
132
112
{
@@ -161,15 +141,6 @@ public async Task GetSetAudioMuted_check()
161
141
ok.Should().BeFalse();
162
142
}
163
143
164
-
[SkippableFact(Timeout=20000)]
165
-
publicasyncTaskAudioMutedProperty_check()
166
-
{
167
-
Skip.If(Environment.GetEnvironmentVariable("GITHUB_RUN_ID")!=null&&RuntimeInformation.IsOSPlatform(OSPlatform.Windows),"Skipping test on Windows CI.");
@@ -182,14 +153,5 @@ public async Task GetSetUserAgent_check()
182
153
ok.Should().Be("MyUserAgent/1.0");
183
154
}
184
155
185
-
[SkippableFact(Timeout=20000)]
186
-
publicasyncTaskUserAgentProperty_check()
187
-
{
188
-
Skip.If(Environment.GetEnvironmentVariable("GITHUB_RUN_ID")!=null&&RuntimeInformation.IsOSPlatform(OSPlatform.Windows),"Skipping test on Windows CI.");
0 commit comments