mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	The spec has a general rule for this, which is roughly that "If it's not a falsey value, it's true". However, a couple of media-features are always false, apparently breaking this rule. To handle that, we have an array of false keywords in the JSON, instead of a single keyword. For those always-false media-features, we can enter all their values into this array. Gets us 2 more WPT subtest passes.
		
			
				
	
	
		
			365 lines
		
	
	
	
		
			14 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			365 lines
		
	
	
	
		
			14 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021-2025, Sam Atkins <sam@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibWeb/CSS/MediaQuery.h>
 | 
						|
#include <LibWeb/CSS/Serialize.h>
 | 
						|
#include <LibWeb/CSS/StyleComputer.h>
 | 
						|
#include <LibWeb/DOM/Document.h>
 | 
						|
#include <LibWeb/HTML/Window.h>
 | 
						|
#include <LibWeb/Page/Page.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
NonnullRefPtr<MediaQuery> MediaQuery::create_not_all()
 | 
						|
{
 | 
						|
    auto media_query = new MediaQuery;
 | 
						|
    media_query->m_negated = true;
 | 
						|
    media_query->m_media_type = {
 | 
						|
        .name = "all"_fly_string,
 | 
						|
        .known_type = KnownMediaType::All,
 | 
						|
    };
 | 
						|
 | 
						|
    return adopt_ref(*media_query);
 | 
						|
}
 | 
						|
 | 
						|
String MediaFeatureValue::to_string() const
 | 
						|
{
 | 
						|
    return m_value.visit(
 | 
						|
        [](Keyword const& ident) { return MUST(String::from_utf8(string_from_keyword(ident))); },
 | 
						|
        [](LengthOrCalculated const& length) { return length.to_string(); },
 | 
						|
        [](Ratio const& ratio) { return ratio.to_string(); },
 | 
						|
        [](ResolutionOrCalculated const& resolution) { return resolution.to_string(); },
 | 
						|
        [](IntegerOrCalculated const& integer) {
 | 
						|
            if (integer.is_calculated())
 | 
						|
                return integer.calculated()->to_string(SerializationMode::Normal);
 | 
						|
            return String::number(integer.value());
 | 
						|
        },
 | 
						|
        [&](Vector<Parser::ComponentValue> const& values) {
 | 
						|
            return serialize_a_series_of_component_values(values);
 | 
						|
        });
 | 
						|
}
 | 
						|
 | 
						|
bool MediaFeatureValue::is_same_type(MediaFeatureValue const& other) const
 | 
						|
{
 | 
						|
    return m_value.visit(
 | 
						|
        [&](Keyword const&) { return other.is_ident(); },
 | 
						|
        [&](LengthOrCalculated const&) { return other.is_length(); },
 | 
						|
        [&](Ratio const&) { return other.is_ratio(); },
 | 
						|
        [&](ResolutionOrCalculated const&) { return other.is_resolution(); },
 | 
						|
        [&](IntegerOrCalculated const&) { return other.is_integer(); },
 | 
						|
        [&](Vector<Parser::ComponentValue> const&) { return other.is_unknown(); });
 | 
						|
}
 | 
						|
 | 
						|
String MediaFeature::to_string() const
 | 
						|
{
 | 
						|
    auto comparison_string = [](Comparison comparison) -> StringView {
 | 
						|
        switch (comparison) {
 | 
						|
        case Comparison::Equal:
 | 
						|
            return "="sv;
 | 
						|
        case Comparison::LessThan:
 | 
						|
            return "<"sv;
 | 
						|
        case Comparison::LessThanOrEqual:
 | 
						|
            return "<="sv;
 | 
						|
        case Comparison::GreaterThan:
 | 
						|
            return ">"sv;
 | 
						|
        case Comparison::GreaterThanOrEqual:
 | 
						|
            return ">="sv;
 | 
						|
        }
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    };
 | 
						|
 | 
						|
    switch (m_type) {
 | 
						|
    case Type::IsTrue:
 | 
						|
        return MUST(String::from_utf8(string_from_media_feature_id(m_id)));
 | 
						|
    case Type::ExactValue:
 | 
						|
        return MUST(String::formatted("{}: {}", string_from_media_feature_id(m_id), value().to_string()));
 | 
						|
    case Type::MinValue:
 | 
						|
        return MUST(String::formatted("min-{}: {}", string_from_media_feature_id(m_id), value().to_string()));
 | 
						|
    case Type::MaxValue:
 | 
						|
        return MUST(String::formatted("max-{}: {}", string_from_media_feature_id(m_id), value().to_string()));
 | 
						|
    case Type::Range: {
 | 
						|
        auto& range = this->range();
 | 
						|
        StringBuilder builder;
 | 
						|
        if (range.left_comparison.has_value())
 | 
						|
            builder.appendff("{} {} ", range.left_value->to_string(), comparison_string(*range.left_comparison));
 | 
						|
        builder.append(string_from_media_feature_id(m_id));
 | 
						|
        if (range.right_comparison.has_value())
 | 
						|
            builder.appendff(" {} {}", comparison_string(*range.right_comparison), range.right_value->to_string());
 | 
						|
 | 
						|
        return builder.to_string_without_validation();
 | 
						|
    }
 | 
						|
    }
 | 
						|
 | 
						|
    VERIFY_NOT_REACHED();
 | 
						|
}
 | 
						|
 | 
						|
MatchResult MediaFeature::evaluate(HTML::Window const* window) const
 | 
						|
{
 | 
						|
    VERIFY(window);
 | 
						|
    auto maybe_queried_value = window->query_media_feature(m_id);
 | 
						|
    if (!maybe_queried_value.has_value())
 | 
						|
        return MatchResult::False;
 | 
						|
    auto queried_value = maybe_queried_value.release_value();
 | 
						|
 | 
						|
    CalculationResolutionContext calculation_context {
 | 
						|
        .length_resolution_context = Length::ResolutionContext::for_window(*window),
 | 
						|
    };
 | 
						|
    switch (m_type) {
 | 
						|
    case Type::IsTrue:
 | 
						|
        if (queried_value.is_integer())
 | 
						|
            return as_match_result(queried_value.integer().resolved(calculation_context) != 0);
 | 
						|
        if (queried_value.is_length()) {
 | 
						|
            auto length = queried_value.length().resolved(calculation_context);
 | 
						|
            return as_match_result(length->raw_value() != 0);
 | 
						|
        }
 | 
						|
        // FIXME: I couldn't figure out from the spec how ratios should be evaluated in a boolean context.
 | 
						|
        if (queried_value.is_ratio())
 | 
						|
            return as_match_result(!queried_value.ratio().is_degenerate());
 | 
						|
        if (queried_value.is_resolution())
 | 
						|
            return as_match_result(queried_value.resolution().resolved(calculation_context).map([](auto& it) { return it.to_dots_per_pixel(); }).value_or(0) != 0);
 | 
						|
        if (queried_value.is_ident()) {
 | 
						|
            if (media_feature_keyword_is_falsey(m_id, queried_value.ident()))
 | 
						|
                return MatchResult::False;
 | 
						|
            return MatchResult::True;
 | 
						|
        }
 | 
						|
        return MatchResult::False;
 | 
						|
 | 
						|
    case Type::ExactValue:
 | 
						|
        return compare(*window, value(), Comparison::Equal, queried_value);
 | 
						|
 | 
						|
    case Type::MinValue:
 | 
						|
        return compare(*window, queried_value, Comparison::GreaterThanOrEqual, value());
 | 
						|
 | 
						|
    case Type::MaxValue:
 | 
						|
        return compare(*window, queried_value, Comparison::LessThanOrEqual, value());
 | 
						|
 | 
						|
    case Type::Range: {
 | 
						|
        auto const& range = this->range();
 | 
						|
        if (range.left_comparison.has_value()) {
 | 
						|
            if (auto const left_result = compare(*window, *range.left_value, *range.left_comparison, queried_value); left_result != MatchResult::True)
 | 
						|
                return left_result;
 | 
						|
        }
 | 
						|
 | 
						|
        if (range.right_comparison.has_value()) {
 | 
						|
            if (auto const right_result = compare(*window, queried_value, *range.right_comparison, *range.right_value); right_result != MatchResult::True)
 | 
						|
                return right_result;
 | 
						|
        }
 | 
						|
 | 
						|
        return MatchResult::True;
 | 
						|
    }
 | 
						|
    }
 | 
						|
 | 
						|
    VERIFY_NOT_REACHED();
 | 
						|
}
 | 
						|
 | 
						|
MatchResult MediaFeature::compare(HTML::Window const& window, MediaFeatureValue const& left, Comparison comparison, MediaFeatureValue const& right)
 | 
						|
{
 | 
						|
    if (left.is_unknown() || right.is_unknown())
 | 
						|
        return MatchResult::Unknown;
 | 
						|
 | 
						|
    if (!left.is_same_type(right))
 | 
						|
        return MatchResult::False;
 | 
						|
 | 
						|
    if (left.is_ident()) {
 | 
						|
        if (comparison == Comparison::Equal)
 | 
						|
            return as_match_result(left.ident() == right.ident());
 | 
						|
        return MatchResult::False;
 | 
						|
    }
 | 
						|
 | 
						|
    CalculationResolutionContext calculation_context {
 | 
						|
        .length_resolution_context = Length::ResolutionContext::for_window(window),
 | 
						|
    };
 | 
						|
 | 
						|
    if (left.is_integer()) {
 | 
						|
        switch (comparison) {
 | 
						|
        case Comparison::Equal:
 | 
						|
            return as_match_result(left.integer().resolved(calculation_context).value_or(0) == right.integer().resolved(calculation_context).value_or(0));
 | 
						|
        case Comparison::LessThan:
 | 
						|
            return as_match_result(left.integer().resolved(calculation_context).value_or(0) < right.integer().resolved(calculation_context).value_or(0));
 | 
						|
        case Comparison::LessThanOrEqual:
 | 
						|
            return as_match_result(left.integer().resolved(calculation_context).value_or(0) <= right.integer().resolved(calculation_context).value_or(0));
 | 
						|
        case Comparison::GreaterThan:
 | 
						|
            return as_match_result(left.integer().resolved(calculation_context).value_or(0) > right.integer().resolved(calculation_context).value_or(0));
 | 
						|
        case Comparison::GreaterThanOrEqual:
 | 
						|
            return as_match_result(left.integer().resolved(calculation_context).value_or(0) >= right.integer().resolved(calculation_context).value_or(0));
 | 
						|
        }
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    }
 | 
						|
 | 
						|
    if (left.is_length()) {
 | 
						|
        CSSPixels left_px;
 | 
						|
        CSSPixels right_px;
 | 
						|
        auto left_length = left.length().resolved(calculation_context).value_or(Length::make_px(0));
 | 
						|
        auto right_length = right.length().resolved(calculation_context).value_or(Length::make_px(0));
 | 
						|
        // Save ourselves some work if neither side is a relative length.
 | 
						|
        if (left_length.is_absolute() && right_length.is_absolute()) {
 | 
						|
            left_px = left_length.absolute_length_to_px();
 | 
						|
            right_px = right_length.absolute_length_to_px();
 | 
						|
        } else {
 | 
						|
            auto viewport_rect = window.page().web_exposed_screen_area();
 | 
						|
 | 
						|
            auto const& initial_font = window.associated_document().style_computer().initial_font();
 | 
						|
            Gfx::FontPixelMetrics const& initial_font_metrics = initial_font.pixel_metrics();
 | 
						|
            Length::FontMetrics font_metrics { CSSPixels { initial_font.point_size() }, initial_font_metrics };
 | 
						|
 | 
						|
            left_px = left_length.to_px(viewport_rect, font_metrics, font_metrics);
 | 
						|
            right_px = right_length.to_px(viewport_rect, font_metrics, font_metrics);
 | 
						|
        }
 | 
						|
 | 
						|
        switch (comparison) {
 | 
						|
        case Comparison::Equal:
 | 
						|
            return as_match_result(left_px == right_px);
 | 
						|
        case Comparison::LessThan:
 | 
						|
            return as_match_result(left_px < right_px);
 | 
						|
        case Comparison::LessThanOrEqual:
 | 
						|
            return as_match_result(left_px <= right_px);
 | 
						|
        case Comparison::GreaterThan:
 | 
						|
            return as_match_result(left_px > right_px);
 | 
						|
        case Comparison::GreaterThanOrEqual:
 | 
						|
            return as_match_result(left_px >= right_px);
 | 
						|
        }
 | 
						|
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    }
 | 
						|
 | 
						|
    if (left.is_ratio()) {
 | 
						|
        auto left_decimal = left.ratio().value();
 | 
						|
        auto right_decimal = right.ratio().value();
 | 
						|
 | 
						|
        switch (comparison) {
 | 
						|
        case Comparison::Equal:
 | 
						|
            return as_match_result(left_decimal == right_decimal);
 | 
						|
        case Comparison::LessThan:
 | 
						|
            return as_match_result(left_decimal < right_decimal);
 | 
						|
        case Comparison::LessThanOrEqual:
 | 
						|
            return as_match_result(left_decimal <= right_decimal);
 | 
						|
        case Comparison::GreaterThan:
 | 
						|
            return as_match_result(left_decimal > right_decimal);
 | 
						|
        case Comparison::GreaterThanOrEqual:
 | 
						|
            return as_match_result(left_decimal >= right_decimal);
 | 
						|
        }
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    }
 | 
						|
 | 
						|
    if (left.is_resolution()) {
 | 
						|
        auto left_dppx = left.resolution().resolved(calculation_context).map([](auto& it) { return it.to_dots_per_pixel(); }).value_or(0);
 | 
						|
        auto right_dppx = right.resolution().resolved(calculation_context).map([](auto& it) { return it.to_dots_per_pixel(); }).value_or(0);
 | 
						|
 | 
						|
        switch (comparison) {
 | 
						|
        case Comparison::Equal:
 | 
						|
            return as_match_result(left_dppx == right_dppx);
 | 
						|
        case Comparison::LessThan:
 | 
						|
            return as_match_result(left_dppx < right_dppx);
 | 
						|
        case Comparison::LessThanOrEqual:
 | 
						|
            return as_match_result(left_dppx <= right_dppx);
 | 
						|
        case Comparison::GreaterThan:
 | 
						|
            return as_match_result(left_dppx > right_dppx);
 | 
						|
        case Comparison::GreaterThanOrEqual:
 | 
						|
            return as_match_result(left_dppx >= right_dppx);
 | 
						|
        }
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    }
 | 
						|
 | 
						|
    VERIFY_NOT_REACHED();
 | 
						|
}
 | 
						|
 | 
						|
void MediaFeature::dump(StringBuilder& builder, int indent_levels) const
 | 
						|
{
 | 
						|
    indent(builder, indent_levels);
 | 
						|
    builder.appendff("MediaFeature: {}", to_string());
 | 
						|
}
 | 
						|
 | 
						|
String MediaQuery::to_string() const
 | 
						|
{
 | 
						|
    StringBuilder builder;
 | 
						|
 | 
						|
    if (m_negated)
 | 
						|
        builder.append("not "sv);
 | 
						|
 | 
						|
    if (m_negated || m_media_type.known_type != KnownMediaType::All || !m_media_condition) {
 | 
						|
        if (m_media_type.known_type.has_value()) {
 | 
						|
            builder.append(CSS::to_string(m_media_type.known_type.value()));
 | 
						|
        } else {
 | 
						|
            builder.append(serialize_an_identifier(m_media_type.name.to_ascii_lowercase()));
 | 
						|
        }
 | 
						|
        if (m_media_condition)
 | 
						|
            builder.append(" and "sv);
 | 
						|
    }
 | 
						|
 | 
						|
    if (m_media_condition) {
 | 
						|
        builder.append(m_media_condition->to_string());
 | 
						|
    }
 | 
						|
 | 
						|
    return MUST(builder.to_string());
 | 
						|
}
 | 
						|
 | 
						|
bool MediaQuery::evaluate(HTML::Window const& window)
 | 
						|
{
 | 
						|
    auto matches_media = [](MediaType const& media) -> MatchResult {
 | 
						|
        if (!media.known_type.has_value())
 | 
						|
            return MatchResult::False;
 | 
						|
        switch (media.known_type.value()) {
 | 
						|
        case KnownMediaType::All:
 | 
						|
            return MatchResult::True;
 | 
						|
        case KnownMediaType::Print:
 | 
						|
            // FIXME: Enable for printing, when we have printing!
 | 
						|
            return MatchResult::False;
 | 
						|
        case KnownMediaType::Screen:
 | 
						|
            // FIXME: Disable for printing, when we have printing!
 | 
						|
            return MatchResult::True;
 | 
						|
        }
 | 
						|
        VERIFY_NOT_REACHED();
 | 
						|
    };
 | 
						|
 | 
						|
    MatchResult result = matches_media(m_media_type);
 | 
						|
 | 
						|
    if ((result != MatchResult::False) && m_media_condition)
 | 
						|
        result = result && m_media_condition->evaluate(&window);
 | 
						|
 | 
						|
    if (m_negated)
 | 
						|
        result = negate(result);
 | 
						|
 | 
						|
    m_matches = result == MatchResult::True;
 | 
						|
    return m_matches;
 | 
						|
}
 | 
						|
 | 
						|
// https://www.w3.org/TR/cssom-1/#serialize-a-media-query-list
 | 
						|
String serialize_a_media_query_list(Vector<NonnullRefPtr<MediaQuery>> const& media_queries)
 | 
						|
{
 | 
						|
    // 1. If the media query list is empty, then return the empty string.
 | 
						|
    if (media_queries.is_empty())
 | 
						|
        return String {};
 | 
						|
 | 
						|
    // 2. Serialize each media query in the list of media queries, in the same order as they
 | 
						|
    // appear in the media query list, and then serialize the list.
 | 
						|
    return MUST(String::join(", "sv, media_queries));
 | 
						|
}
 | 
						|
 | 
						|
Optional<MediaQuery::KnownMediaType> media_type_from_string(StringView name)
 | 
						|
{
 | 
						|
    if (name.equals_ignoring_ascii_case("all"sv))
 | 
						|
        return MediaQuery::KnownMediaType::All;
 | 
						|
    if (name.equals_ignoring_ascii_case("print"sv))
 | 
						|
        return MediaQuery::KnownMediaType::Print;
 | 
						|
    if (name.equals_ignoring_ascii_case("screen"sv))
 | 
						|
        return MediaQuery::KnownMediaType::Screen;
 | 
						|
    return {};
 | 
						|
}
 | 
						|
 | 
						|
StringView to_string(MediaQuery::KnownMediaType media_type)
 | 
						|
{
 | 
						|
    switch (media_type) {
 | 
						|
    case MediaQuery::KnownMediaType::All:
 | 
						|
        return "all"sv;
 | 
						|
    case MediaQuery::KnownMediaType::Print:
 | 
						|
        return "print"sv;
 | 
						|
    case MediaQuery::KnownMediaType::Screen:
 | 
						|
        return "screen"sv;
 | 
						|
    }
 | 
						|
    VERIFY_NOT_REACHED();
 | 
						|
}
 | 
						|
 | 
						|
}
 |