mirror of
https://github.com/servo/servo
synced 2026-05-03 12:52:25 +02:00
Add basic `IDL` implementation for `LargestContentfulPaint` Testing: Tested locally Fixes: N/A <img width="800" height="210" alt="Screenshot from 2025-11-06 12-56-37" src="https://github.com/user-attachments/assets/af453b8d-7605-4300-8c87-c2574feff81f" /> --------- Signed-off-by: Shubham Gupta <shubham.gupta@chromium.org>
21 lines
789 B
Rust
21 lines
789 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub(crate) mod largestcontentfulpaint;
|
|
#[allow(clippy::module_inception, reason = "The interface name is Performance")]
|
|
pub(crate) mod performance;
|
|
#[expect(dead_code)]
|
|
pub(crate) mod performanceentry;
|
|
pub(crate) mod performancemark;
|
|
pub(crate) mod performancemeasure;
|
|
pub(crate) mod performancenavigation;
|
|
pub(crate) mod performancenavigationtiming;
|
|
#[expect(dead_code)]
|
|
pub(crate) mod performanceobserver;
|
|
pub(crate) mod performanceobserverentrylist;
|
|
pub(crate) mod performancepainttiming;
|
|
pub(crate) mod performanceresourcetiming;
|
|
|
|
pub(crate) use self::performance::Performance;
|