decruft 0.1.4

Extract clean, readable content from web pages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
use ego_tree::NodeId;
use scraper::{Html, Node};

use crate::dom;

/// Allowed attributes to preserve on elements.
const ALLOWED_ATTRIBUTES: &[&str] = &[
    "accent",
    "accentunder",
    "align",
    "alt",
    "allow",
    "allowfullscreen",
    "aria-label",
    "checked",
    "class",
    "colspan",
    "columnalign",
    "columnlines",
    "columnspacing",
    "columnspan",
    "controls",
    "data-callout",
    "data-callout-fold",
    "data-callout-title",
    "data-lang",
    "data-latex",
    "data-mjx-texclass",
    "data-src",
    "data-srcset",
    "depth",
    "dir",
    "display",
    "displaystyle",
    "fence",
    "frame",
    "frameborder",
    "framespacing",
    "headers",
    "height",
    "href",
    "id",
    "kind",
    "label",
    "lang",
    "linethickness",
    "lspace",
    "mathsize",
    "mathvariant",
    "maxsize",
    "minsize",
    "movablelimits",
    "notation",
    "poster",
    "role",
    "rowalign",
    "rowlines",
    "rowspacing",
    "rowspan",
    "rspace",
    "scriptlevel",
    "separator",
    "src",
    "srclang",
    "srcset",
    "stretchy",
    "symmetric",
    "title",
    "type",
    "voffset",
    "width",
    "xmlns",
];

/// Elements that are allowed to be empty.
const ALLOWED_EMPTY: &[&str] = &[
    "area", "audio", "base", "br", "circle", "col", "defs", "ellipse", "embed", "figure", "g",
    "hr", "iframe", "img", "input", "line", "link", "mask", "meta", "object", "param", "path",
    "pattern", "picture", "polygon", "polyline", "rect", "source", "stop", "svg", "td", "th",
    "track", "use", "video", "wbr",
];

/// Unsafe elements to strip entirely.
const UNSAFE_ELEMENTS: &[&str] = &["frame", "frameset", "object", "embed", "applet", "base"];

/// URL attributes that should not contain script URIs.
const URL_ATTRS: &[&str] = &["href", "src", "action", "formaction"];

/// Standardize content: clean attributes, remove empty elements,
/// fix headings, unwrap wrapper divs, and strip `<wbr>` tags.
pub fn standardize_content(html: &mut Html, main_content: NodeId) {
    remove_wbr_elements(html, main_content);
    clean_attributes(html, main_content);
    remove_empty_elements(html, main_content);
    normalize_headings(html, main_content);
    unwrap_wrapper_divs(html, main_content);
}

/// Remove all `<wbr>` elements (word-break hints) without inserting
/// any whitespace.
fn remove_wbr_elements(html: &mut Html, main_content: NodeId) {
    let wbrs = dom::descendant_elements_by_tag(html, main_content, "wbr");
    for id in wbrs {
        dom::remove_node(html, id);
    }
}

/// Remove non-allowed attributes from all elements under the given
/// root. Public alias for use by the extractor sanitization path.
pub fn clean_attributes_on(html: &mut Html, main_content: NodeId) {
    clean_attributes(html, main_content);
}

/// Remove non-allowed attributes from all elements.
fn clean_attributes(html: &mut Html, main_content: NodeId) {
    let descendants = dom::all_descendant_elements(html, main_content);
    for node_id in descendants {
        let Some(node_ref) = html.tree.get(node_id) else {
            continue;
        };
        let Node::Element(el) = node_ref.value() else {
            continue;
        };

        let tag = el.name.local.as_ref().to_string();
        let is_svg_related = matches!(
            tag.as_str(),
            "svg"
                | "path"
                | "circle"
                | "rect"
                | "line"
                | "polygon"
                | "polyline"
                | "g"
                | "defs"
                | "use"
                | "mask"
                | "ellipse"
                | "stop"
                | "pattern"
                | "text"
                | "tspan"
                | "clippath"
                | "lineargradient"
                | "radialgradient"
                | "filter"
                | "fegaussianblur"
                | "feoffset"
                | "feblend"
                | "marker"
                | "symbol"
                | "image"
                | "foreignobject"
                | "desc"
                | "metadata"
                | "style"
        ) || is_inside_svg(html, node_id);

        if is_svg_related {
            continue;
        }

        let Some(mut node_mut) = html.tree.get_mut(node_id) else {
            continue;
        };
        let Node::Element(el) = node_mut.value() else {
            continue;
        };
        el.attrs
            .retain(|(name, _)| ALLOWED_ATTRIBUTES.contains(&name.local.as_ref()));
    }
}

/// Remove empty elements (no text, no children, not in allowed list).
/// Also removes `<p>` elements whose only children are `<br>` tags
/// (visual spacers with no content).
fn remove_empty_elements(html: &mut Html, main_content: NodeId) {
    let mut to_remove = Vec::new();
    let descendants = dom::all_descendant_elements(html, main_content);

    for node_id in descendants {
        let Some(node_ref) = html.tree.get(node_id) else {
            continue;
        };
        let Node::Element(el) = node_ref.value() else {
            continue;
        };

        let tag = el.name.local.as_ref();
        if ALLOWED_EMPTY.contains(&tag) {
            continue;
        }

        let text = dom::text_content(html, node_id);
        if text.trim().is_empty() && !node_ref.has_children() {
            to_remove.push(node_id);
            continue;
        }

        // <p> with only <br> children (visual spacers)
        let only_brs = has_only_br_children(html, node_id);
        if tag == "p" && text.trim().is_empty() && only_brs {
            to_remove.push(node_id);
        }
    }

    for id in to_remove {
        dom::remove_node(html, id);
    }
}

/// Check if a node's only element children are `<br>` tags.
fn has_only_br_children(html: &Html, node_id: NodeId) -> bool {
    let Some(node_ref) = html.tree.get(node_id) else {
        return false;
    };
    let mut has_element_child = false;
    for child in node_ref.children() {
        if let Node::Element(el) = child.value() {
            if el.name.local.as_ref() != "br" {
                return false;
            }
            has_element_child = true;
        }
    }
    has_element_child
}

/// Normalize heading levels: ensure exactly one h1, demote extras.
fn normalize_headings(html: &mut Html, main_content: NodeId) {
    let h1s = dom::descendant_elements_by_tag(html, main_content, "h1");
    if h1s.len() <= 1 {
        return;
    }

    for &h1_id in &h1s[1..] {
        let Some(mut node_mut) = html.tree.get_mut(h1_id) else {
            continue;
        };
        let Node::Element(el) = node_mut.value() else {
            continue;
        };
        el.name.local = markup5ever::local_name!("h2");
    }
}

/// Unwrap non-semantic wrapper divs (single-child divs containing a
/// block element with no extra text). Moves children before the
/// wrapper, then removes the empty wrapper.
fn unwrap_wrapper_divs(html: &mut Html, main_content: NodeId) {
    let block_tags = [
        "article",
        "section",
        "div",
        "main",
        "p",
        "blockquote",
        "figure",
        "table",
        "ul",
        "ol",
        "dl",
        "h1",
        "h2",
        "h3",
        "h4",
        "h5",
        "h6",
    ];

    let descendants = dom::all_descendant_elements(html, main_content);
    let mut to_unwrap = Vec::new();

    for node_id in descendants {
        if node_id == main_content {
            continue;
        }
        let Some(tag) = dom::tag_name(html, node_id) else {
            continue;
        };
        if tag != "div" {
            continue;
        }

        // Preserve canonical footnote structure
        let el_id = dom::get_attr(html, node_id, "id").unwrap_or_default();
        if el_id == "footnotes" || el_id.starts_with("fn:") {
            continue;
        }

        let children = dom::child_elements(html, node_id);
        if children.len() != 1 {
            continue;
        }

        let child_tag = dom::tag_name(html, children[0]);
        let is_block_child = child_tag
            .as_ref()
            .is_some_and(|t| block_tags.contains(&t.as_str()));

        let text = dom::text_content(html, node_id);
        let child_text = dom::text_content(html, children[0]);
        let no_extra_text = text.trim().len() == child_text.trim().len();

        if is_block_child && no_extra_text {
            to_unwrap.push(node_id);
        }
    }

    // Move each wrapper's children before the wrapper, then remove it.
    // Process in reverse so inner wrappers are handled first.
    for &wrapper_id in to_unwrap.iter().rev() {
        let child_ids = collect_child_ids(html, wrapper_id);
        for child_id in child_ids {
            let Some(mut wrapper_mut) = html.tree.get_mut(wrapper_id) else {
                break;
            };
            wrapper_mut.insert_id_before(child_id);
        }
        dom::remove_node(html, wrapper_id);
    }
}

/// Collect all direct child node IDs (elements and text nodes).
fn collect_child_ids(html: &Html, node_id: NodeId) -> Vec<NodeId> {
    let Some(node_ref) = html.tree.get(node_id) else {
        return Vec::new();
    };
    node_ref.children().map(|c| c.id()).collect()
}

/// Strip unsafe elements and dangerous attributes from the document.
/// Removes frames, embeds, applets, event handlers, and script URIs.
pub fn strip_unsafe_elements(html: &mut Html) {
    remove_unsafe_tags(html);
    remove_dangerous_attributes(html);
}

/// Remove elements that should never appear in sanitized output.
fn remove_unsafe_tags(html: &mut Html) {
    let mut to_remove = Vec::new();
    for tag in UNSAFE_ELEMENTS {
        let ids = dom::select_ids(html, tag);
        to_remove.extend(ids);
    }
    for id in to_remove {
        dom::remove_node(html, id);
    }
}

/// Remove event handler attributes, srcdoc, and script URIs.
fn remove_dangerous_attributes(html: &mut Html) {
    let all = dom::all_descendant_elements(html, html.tree.root().id());
    for node_id in all {
        let is_svg_child = is_inside_svg(html, node_id);
        let Some(mut node_mut) = html.tree.get_mut(node_id) else {
            continue;
        };
        let Node::Element(el) = node_mut.value() else {
            continue;
        };

        // Preserve <style> inside <svg>
        if is_svg_child && el.name.local.as_ref() == "style" {
            continue;
        }

        el.attrs.retain(|(name, value)| {
            let n = name.local.as_ref();

            // Remove on* event handlers
            if n.starts_with("on") {
                return false;
            }

            // Remove srcdoc
            if n == "srcdoc" {
                return false;
            }

            // Check URL attrs for script URIs
            if URL_ATTRS.contains(&n) && is_dangerous_uri(value) {
                return false;
            }

            true
        });

        // Filter dangerous URIs from srcset/data-srcset values
        for (name, value) in &mut el.attrs {
            let n = name.local.as_ref();
            if n == "srcset" || n == "data-srcset" {
                let candidates = split_srcset_candidates(value);
                let safe: Vec<&str> = candidates
                    .into_iter()
                    .filter(|entry| {
                        let url = entry.split_whitespace().next().unwrap_or("");
                        !is_dangerous_uri(url)
                    })
                    .collect();
                *value = safe.join(",").into();
            }
        }
    }
}

/// Check whether a URI is dangerous (script execution or embedded HTML).
///
/// Blocks `javascript:` URIs and `data:` URIs except safe raster image
/// types. SVG data URIs are rejected because SVG can contain `<script>`.
fn is_dangerous_uri(value: &str) -> bool {
    let trimmed = value.to_ascii_lowercase();
    let trimmed = trimmed.trim();
    if trimmed.starts_with("javascript:") {
        return true;
    }
    if let Some(data_uri) = trimmed.strip_prefix("data:") {
        // Extract the MIME essence type (before any ;params or ,payload)
        let media_type = data_uri.split(',').next().unwrap_or("").trim();
        let essence = media_type.split(';').next().unwrap_or("").trim();
        let safe = matches!(
            essence,
            "image/png" | "image/jpeg" | "image/gif" | "image/webp" | "image/avif"
        );
        return !safe;
    }
    false
}

/// Check whether a node is inside an `<svg>` ancestor.
fn is_inside_svg(html: &Html, node_id: NodeId) -> bool {
    let mut current = node_id;
    loop {
        let Some(node_ref) = html.tree.get(current) else {
            return false;
        };
        let Some(parent) = node_ref.parent() else {
            return false;
        };
        if let Node::Element(el) = parent.value()
            && el.name.local.as_ref() == "svg"
        {
            return true;
        }
        current = parent.id();
    }
}

/// Resolve relative URLs to absolute using the base URL.
/// Falls back to `<base href>` if `base_url` is empty or invalid.
pub fn resolve_urls(html: &mut Html, main_content: NodeId, base_url: &str) {
    let base = resolve_base_url(html, base_url);
    let Some(base) = base else {
        return;
    };

    let attrs_to_resolve = [
        ("a", "href"),
        ("img", "src"),
        ("img", "srcset"),
        ("video", "poster"),
        ("source", "src"),
        ("source", "srcset"),
        ("iframe", "src"),
    ];

    for (tag, attr) in &attrs_to_resolve {
        let elements = dom::descendant_elements_by_tag(html, main_content, tag);
        for node_id in elements {
            resolve_single_attr(html, node_id, &base, attr);
        }
    }
}

/// Determine the base URL: prefer the provided URL, fall back to
/// `<base href>` in the document.
fn resolve_base_url(html: &Html, base_url: &str) -> Option<url::Url> {
    if let Ok(parsed) = url::Url::parse(base_url) {
        return Some(parsed);
    }

    // Fall back to <base href> in the document
    let base_ids = dom::select_ids(html, "base[href]");
    for id in base_ids {
        if let Some(href) = dom::get_attr(html, id, "href")
            && let Ok(parsed) = url::Url::parse(&href)
        {
            return Some(parsed);
        }
    }

    None
}

/// Resolve a single URL attribute on a node.
fn resolve_single_attr(html: &mut Html, node_id: NodeId, base: &url::Url, attr: &str) {
    let Some(val) = dom::get_attr(html, node_id, attr) else {
        return;
    };
    // srcset values are comma-separated lists; individual entries may
    // mix absolute and relative URLs, so always dispatch to the
    // dedicated parser instead of short-circuiting on the first entry.
    if attr == "srcset" {
        resolve_srcset(html, node_id, base);
        return;
    }
    if val.starts_with("http://") || val.starts_with("https://") || val.starts_with("//") {
        return;
    }
    let Ok(resolved) = base.join(&val) else {
        return;
    };
    dom::set_attr(html, node_id, attr, resolved.as_ref());
}

fn resolve_srcset(html: &mut Html, node_id: NodeId, base: &url::Url) {
    let Some(val) = dom::get_attr(html, node_id, "srcset") else {
        return;
    };
    let mut parts = Vec::new();
    for entry in split_srcset_candidates(&val) {
        let trimmed = entry.trim();
        let mut tokens = trimmed.split_whitespace();
        let Some(url_part) = tokens.next() else {
            continue;
        };
        let descriptor: String = tokens.collect::<Vec<_>>().join(" ");
        if is_dangerous_uri(url_part) {
            continue;
        }
        let resolved = if url_part.starts_with("http://") || url_part.starts_with("https://") {
            url_part.to_string()
        } else {
            base.join(url_part)
                .map_or_else(|_| url_part.to_string(), |u| u.to_string())
        };
        if descriptor.is_empty() {
            parts.push(resolved);
        } else {
            parts.push(format!("{resolved} {descriptor}"));
        }
    }
    let new_val = parts.join(", ");
    dom::set_attr(html, node_id, "srcset", &new_val);
}

/// Split srcset into candidates without breaking data URIs.
///
/// Data URIs contain commas (separating metadata from payload), so a
/// naive `split(',')` corrupts them. This splits on commas that follow
/// a whitespace+descriptor pattern or appear between non-data URLs.
fn split_srcset_candidates(srcset: &str) -> Vec<&str> {
    let mut candidates = Vec::new();
    let mut start = 0;
    let mut i = 0;
    let bytes = srcset.as_bytes();

    while i < bytes.len() {
        if bytes[i] == b',' {
            // Check if we're inside a data URI by looking at the
            // candidate so far. If it starts with "data:" and we
            // haven't seen a descriptor (like "1x", "2w") after
            // whitespace, the comma is part of the data URI.
            let candidate = srcset[start..i].trim();
            let has_descriptor = candidate
                .rsplit_once(char::is_whitespace)
                .is_some_and(|(_, desc)| desc.ends_with('x') || desc.ends_with('w'));
            let is_data_uri = candidate
                .split_whitespace()
                .next()
                .is_some_and(|url| url.starts_with("data:"));

            if is_data_uri && !has_descriptor {
                // Comma is inside the data URI payload — skip
                i += 1;
                continue;
            }
            candidates.push(&srcset[start..i]);
            start = i + 1;
        }
        i += 1;
    }
    if start < srcset.len() {
        candidates.push(&srcset[start..]);
    }
    candidates
}

/// Parse an HTML string, strip unsafe elements and attributes, then
/// serialize back. Used to sanitize content that bypasses the normal
/// DOM pipeline (e.g. schema.org fallback text).
#[must_use]
pub fn sanitize_html_string(html_str: &str) -> String {
    let mut html = Html::parse_fragment(html_str);
    strip_unsafe_elements(&mut html);
    dom::inner_html(&html, html.tree.root().id())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn resolve_source_srcset() {
        let html_str = r#"<html><body>
            <picture>
                <source srcset="/small.jpg 1x, /large.jpg 2x">
                <img src="/fallback.jpg">
            </picture>
        </body></html>"#;
        let mut doc = Html::parse_document(html_str);
        let body_ids = dom::select_ids(&doc, "body");
        let body = body_ids[0];
        resolve_urls(&mut doc, body, "https://example.com");
        let output = dom::outer_html(&doc, body);
        assert!(output.contains("https://example.com/small.jpg 1x"));
        assert!(output.contains("https://example.com/large.jpg 2x"));
        assert!(output.contains("https://example.com/fallback.jpg"));
    }

    #[test]
    fn resolve_mixed_srcset() {
        let html_str = r#"<html><body>
            <img srcset="https://cdn.example.com/abs.jpg 1x, /relative.jpg 2x">
        </body></html>"#;
        let mut doc = Html::parse_document(html_str);
        let body_ids = dom::select_ids(&doc, "body");
        let body = body_ids[0];
        resolve_urls(&mut doc, body, "https://example.com");
        let output = dom::outer_html(&doc, body);
        assert!(output.contains("https://cdn.example.com/abs.jpg 1x"));
        assert!(output.contains("https://example.com/relative.jpg 2x"));
    }

    // ── strip_unsafe_elements ───────────────────────────────────────

    #[test]
    fn strip_removes_frame_and_frameset() {
        let mut doc = Html::parse_document(
            "<html><body><frame src=\"x.html\"><frameset><frame src=\"y.html\"></frameset><p>keep</p></body></html>",
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("<frame"));
        assert!(!out.contains("<frameset"));
        assert!(out.contains("keep"));
    }

    #[test]
    fn strip_removes_event_handler_attributes() {
        let mut doc = Html::parse_document(
            r#"<html><body><div onclick="evil()" onerror="bad()">text</div></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("onclick"));
        assert!(!out.contains("onerror"));
        assert!(out.contains("text"));
    }

    #[test]
    fn strip_removes_javascript_uri_from_href() {
        let mut doc = Html::parse_document(
            r#"<html><body><a href="javascript:alert(1)">link</a></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("javascript:"));
    }

    #[test]
    fn strip_removes_data_text_html_from_src() {
        let mut doc = Html::parse_document(
            r#"<html><body><img src="data:text/html,<script>alert(1)</script>"></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("data:text/html"));
    }

    #[test]
    fn strip_removes_srcdoc_from_iframes() {
        let mut doc = Html::parse_document(
            r#"<html><body><iframe srcdoc="<script>x</script>"></iframe></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("srcdoc"));
    }

    #[test]
    fn strip_preserves_style_inside_svg() {
        let mut doc = Html::parse_document(
            r"<html><body><svg><style>.cls{fill:red}</style><rect/></svg></body></html>",
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(out.contains("<style>"));
    }

    #[test]
    fn strip_removes_object_embed_applet() {
        let mut doc = Html::parse_document(
            r#"<html><body>
            <object data="x.swf"></object>
            <embed src="y.swf">
            <applet code="z.class"></applet>
            <p>safe</p>
            </body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("<object"));
        assert!(!out.contains("<embed"));
        assert!(!out.contains("<applet"));
        assert!(out.contains("safe"));
    }

    // ── is_dangerous_uri / data: URI filtering ─────────────────────

    #[test]
    fn dangerous_uri_blocks_javascript() {
        assert!(is_dangerous_uri("javascript:alert(1)"));
        assert!(is_dangerous_uri("  JavaScript:void(0)  "));
    }

    #[test]
    fn dangerous_uri_blocks_data_text_types() {
        assert!(is_dangerous_uri("data:text/html,<script>x</script>"));
        assert!(is_dangerous_uri("data:text/javascript,alert(1)"));
        assert!(is_dangerous_uri("data:application/javascript,x"));
    }

    #[test]
    fn dangerous_uri_allows_raster_images() {
        assert!(!is_dangerous_uri("data:image/png;base64,iVBOR"));
        assert!(!is_dangerous_uri("data:image/jpeg;base64,/9j/4"));
        assert!(!is_dangerous_uri("data:image/gif;base64,R0lGO"));
        assert!(!is_dangerous_uri("data:image/webp;base64,UklG"));
        assert!(!is_dangerous_uri("data:image/avif;base64,AAAA"));
    }

    #[test]
    fn dangerous_uri_blocks_svg_data_uri() {
        assert!(is_dangerous_uri("data:image/svg+xml;utf8,<svg/>"));
        assert!(is_dangerous_uri("data:image/svg+xml;charset=utf-8,<svg/>"));
        assert!(is_dangerous_uri("data:image/svg+xml;base64,PHN2Zz4="));
    }

    #[test]
    fn dangerous_uri_blocks_other_data_types() {
        assert!(is_dangerous_uri("data:application/pdf,x"));
        assert!(is_dangerous_uri("data:,arbitrary"));
    }

    #[test]
    fn dangerous_uri_allows_normal_urls() {
        assert!(!is_dangerous_uri("https://example.com"));
        assert!(!is_dangerous_uri("/relative/path"));
        assert!(!is_dangerous_uri(""));
    }

    #[test]
    fn strip_removes_dangerous_data_uri_from_src() {
        let mut doc = Html::parse_document(
            r#"<html><body><img src="data:text/javascript,alert(1)"></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("data:text/javascript"));
    }

    #[test]
    fn strip_preserves_data_image_in_src() {
        let mut doc = Html::parse_document(
            r#"<html><body><img src="data:image/gif;base64,R0lGODlh"></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(out.contains("data:image/gif"));
    }

    #[test]
    fn srcset_filters_dangerous_uris() {
        let html_str = r#"<html><body>
            <img srcset="javascript:alert(1) 1x, /safe.jpg 2x">
        </body></html>"#;
        let mut doc = Html::parse_document(html_str);
        let body_ids = dom::select_ids(&doc, "body");
        let body = body_ids[0];
        resolve_urls(&mut doc, body, "https://example.com");
        let out = dom::outer_html(&doc, body);
        assert!(!out.contains("javascript:"));
        assert!(out.contains("https://example.com/safe.jpg 2x"));
    }

    #[test]
    fn strip_sanitizes_srcset_without_url_resolution() {
        // Verifies that strip_unsafe_elements (used by sanitize_html_string)
        // filters dangerous srcset entries even without resolve_urls.
        let mut doc = Html::parse_document(
            r#"<html><body><img srcset="javascript:x 1x, /safe.jpg 2x"></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("javascript:"));
        assert!(out.contains("/safe.jpg 2x"));
    }

    #[test]
    fn strip_blocks_svg_data_uri_in_src() {
        let mut doc = Html::parse_document(
            r#"<html><body><img src="data:image/svg+xml;utf8,<svg><script>alert(1)</script></svg>"></body></html>"#,
        );
        strip_unsafe_elements(&mut doc);
        let out = dom::outer_html(&doc, doc.tree.root().id());
        assert!(!out.contains("data:image/svg+xml"));
    }

    // ── split_srcset_candidates ────────────────────────────────────

    #[test]
    fn split_srcset_simple() {
        let result = split_srcset_candidates("/a.jpg 1x, /b.jpg 2x");
        assert_eq!(result.len(), 2);
    }

    #[test]
    fn split_srcset_preserves_data_uri() {
        let srcset = "data:image/gif;base64,R0lGODlh 1x, /fallback.jpg 2x";
        let result = split_srcset_candidates(srcset);
        assert_eq!(result.len(), 2);
        assert!(result[0].trim().starts_with("data:image/gif"));
        assert!(result[1].trim().contains("fallback.jpg"));
    }
}