Merge pull request #1591 from lightpanda-io/input_and_window_test

Remove duplicate window test
This commit is contained in:
Karl Seguin
2026-02-19 07:59:31 +08:00
committed by GitHub
2 changed files with 2 additions and 4 deletions

View File

@@ -221,7 +221,7 @@
}
</script>
<!-- <script id="defaultChecked">
<script id="defaultChecked">
testing.expectEqual(true, $('#check1').defaultChecked)
testing.expectEqual(false, $('#check2').defaultChecked)
testing.expectEqual(true, $('#radio1').defaultChecked)
@@ -493,4 +493,4 @@
input_checked.defaultChecked = true;
testing.expectEqual(false, input_checked.checked);
}
</script> -->
</script>

View File

@@ -704,7 +704,6 @@ fn getFunctionFromSetter(setter_: ?FunctionSetter) ?js.Function.Global {
};
}
pub const JsApi = struct {
pub const bridge = js.Bridge(Window);
@@ -800,5 +799,4 @@ pub const JsApi = struct {
const testing = @import("../../testing.zig");
test "WebApi: Window" {
try testing.htmlRunner("window", .{});
try testing.htmlRunner("window/stubs.html", .{});
}