mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-02-04 06:23:45 +00:00
axnode: add hr properties
This commit is contained in:
@@ -296,6 +296,10 @@ pub const Writer = struct {
|
|||||||
try self.writeAXProperty(.{ .name = .focusable, .value = .{ .booleanOrUndefined = true } }, w);
|
try self.writeAXProperty(.{ .name = .focusable, .value = .{ .booleanOrUndefined = true } }, w);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
.hr => {
|
||||||
|
try self.writeAXProperty(.{ .name = .settable, .value = .{ .booleanOrUndefined = true } }, w);
|
||||||
|
try self.writeAXProperty(.{ .name = .orientation, .value = .{ .token = "horizontal" } }, w);
|
||||||
|
},
|
||||||
else => {},
|
else => {},
|
||||||
},
|
},
|
||||||
else => |tag| {
|
else => |tag| {
|
||||||
|
|||||||
Reference in New Issue
Block a user