chore: move ClassicScript related code to a new module (#42363)

As discussed on a [Zulip
thread](https://servo.zulipchat.com/#narrow/channel/263398-general/topic/Code.20organization/with/571886607),
move `ClassicScript` code to a new module.

Testing: A successful build is enough

Signed-off-by: Gae24 <96017547+Gae24@users.noreply.github.com>
This commit is contained in:
Gae24
2026-02-05 13:32:38 +01:00
committed by GitHub
parent 8dc7b5c06b
commit 3748667775
8 changed files with 328 additions and 328 deletions

View File

@@ -50,7 +50,8 @@ use crate::dom::element::{
set_cross_origin_attribute,
};
use crate::dom::event::{Event, EventBubbles, EventCancelable};
use crate::dom::globalscope::{ClassicScript, ErrorReporting, GlobalScope, RethrowErrors};
use crate::dom::global_scope_script_execution::{ClassicScript, ErrorReporting, RethrowErrors};
use crate::dom::globalscope::GlobalScope;
use crate::dom::html::htmlelement::HTMLElement;
use crate::dom::node::{ChildrenMutation, CloneChildrenFlag, Node, NodeTraits};
use crate::dom::performance::performanceresourcetiming::InitiatorType;