diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-09-28 20:26:15 +0200 |
---|---|---|
committer | Rodrigo <rodarima@gmail.com> | 2025-09-28 23:10:55 +0200 |
commit | fb510ea86be5ceb9e91573890242581fdbd77ad8 (patch) | |
tree | d819fe40683592008d136727f5a0b03e48dc1164 /434 |
Diffstat (limited to '434')
-rw-r--r-- | 434/index.md | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/434/index.md b/434/index.md new file mode 100644 index 0000000..9658247 --- /dev/null +++ b/434/index.md @@ -0,0 +1,38 @@ +Title: Fix hidden form inputs +Author: rodarima +Created: Sun, 24 Aug 2025 16:30:17 +0000 +State: closed + +Handle display:none properly for form elements. This is specially notable in the wikipedia. + +Fixes #433 + +--%-- +From: rodarima +Date: Sun, 24 Aug 2025 17:06:34 +0000 + +This is causing leaks due to elements being outside the tree. We need to find a way to clean them as well. + +--%-- +From: rodarima +Date: Sat, 30 Aug 2025 14:31:19 +0000 + +> This is causing leaks due to elements being outside the tree. We need to find a way to clean them as well. + +Managed to avoid creating new Embed and Resource elements, so there is no need to release them. + +Let's make sure the memory leaks are first detected and then fixed on the CI. + +--%-- +From: rodarima +Date: Sat, 30 Aug 2025 14:37:49 +0000 + +Fails as expected: https://github.com/dillo-browser/dillo/actions/runs/17344978575/job/49243747678?pr=434 + +> ==== Total leaks after filter: 51 ==== + +--%-- +From: rodarima +Date: Sat, 30 Aug 2025 20:41:02 +0000 + +No leaks detected, seems to be working fine now.
\ No newline at end of file |