ps-blitz-html 0.3.0-beta.3

Blitz HTML parser
Documentation
//! CSS 2.1 Appendix E: all positioned descendants with z-index: auto share
//! one paint level (step 8) and paint in tree order among themselves.

use anyrender::render_to_buffer;
use anyrender_vello_cpu::VelloCpuImageRenderer;
use blitz_dom::DocumentConfig;
use blitz_html::{HtmlDocument, HtmlProvider};
use blitz_paint::paint_scene;
use blitz_traits::shell::{ColorScheme, Viewport};
use std::sync::Arc;

fn center_pixel(html: &str) -> [u8; 3] {
    let mut doc = HtmlDocument::from_html(
        html,
        DocumentConfig {
            viewport: Some(Viewport::new(100, 100, 1.0, ColorScheme::Light)),
            html_parser_provider: Some(Arc::new(HtmlProvider) as _),
            ..Default::default()
        },
    );
    doc.resolve(0.0);
    let buffer = render_to_buffer::<VelloCpuImageRenderer, _>(
        |scene| paint_scene(scene, &mut doc, 1.0, 100, 100, 0, 0),
        100,
        100,
    );
    let idx = (50 * 100 + 50) * 4;
    [buffer[idx], buffer[idx + 1], buffer[idx + 2]]
}

#[test]
fn later_relative_sibling_paints_above_earlier_abspos() {
    let px = center_pixel(
        r#"<html><body style="margin:0">
            <div style="position:relative; width:100px; height:100px;">
                <div style="position:absolute; inset:0; background:#0000ff;"></div>
                <div style="position:relative; width:100px; height:100px; background:#ff0000;"></div>
            </div>
        </body></html>"#,
    );
    assert_eq!(
        px,
        [255, 0, 0],
        "later positioned (z-index auto) sibling must paint above earlier abspos sibling"
    );
}

#[test]
fn abspos_paints_above_earlier_static_sibling() {
    let px = center_pixel(
        r#"<html><body style="margin:0">
            <div style="position:relative; width:100px; height:100px;">
                <div style="width:100px; height:100px; background:#0000ff;"></div>
                <div style="position:absolute; inset:0; background:#ff0000;"></div>
            </div>
        </body></html>"#,
    );
    assert_eq!(px, [255, 0, 0], "abspos must paint above in-flow content");
}

#[test]
fn earlier_abspos_stays_below_static_when_later_in_tree_order_is_static() {
    // In-flow content paints below positioned content even when the
    // positioned element comes first in tree order.
    let px = center_pixel(
        r#"<html><body style="margin:0">
            <div style="position:relative; width:100px; height:100px;">
                <div style="position:absolute; inset:0; background:#ff0000;"></div>
                <div style="width:100px; height:100px; background:#0000ff;"></div>
            </div>
        </body></html>"#,
    );
    assert_eq!(
        px,
        [255, 0, 0],
        "positioned content paints above in-flow content regardless of tree order"
    );
}