LibWeb: Don't expose XMLHttpRequest.responseXML in workers

This commit is contained in:
Tim Ledbetter 2025-06-30 23:29:30 +01:00 committed by Jelle Raaijmakers
commit 7724a96efa
Notes: github-actions[bot] 2025-06-30 23:05:26 +00:00
4 changed files with 19 additions and 1 deletions

View file

@ -50,6 +50,6 @@ interface XMLHttpRequest : XMLHttpRequestEventTarget {
attribute XMLHttpRequestResponseType responseType;
readonly attribute any response;
readonly attribute DOMString responseText;
readonly attribute Document? responseXML;
[Exposed=Window] readonly attribute Document? responseXML;
};