From 09225ff8559a732e7a60df7ad6af658ecb6e21d3 Mon Sep 17 00:00:00 2001 From: Arnold Loubriat Date: Fri, 28 Aug 2026 14:24:49 +0200 Subject: [PATCH] fix: Document attributes casing on Unix --- adapters/atspi-common/src/node.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adapters/atspi-common/src/node.rs b/adapters/atspi-common/src/node.rs index 22ff9e52..f3223e53 100644 --- a/adapters/atspi-common/src/node.rs +++ b/adapters/atspi-common/src/node.rs @@ -455,10 +455,10 @@ impl NodeWrapper<'_> { fn document_attributes(&self) -> HashMap<&'static str, String> { let mut attributes = HashMap::new(); if let Some(title) = self.0.label() { - attributes.insert("title", title); + attributes.insert("Title", title); } if let Some(uri) = self.0.url() { - attributes.insert("uri", uri.to_string()); + attributes.insert("URI", uri.to_string()); } attributes