mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
script: Move HTML DOM interfaces to script/dom/html/
(#39046)
See #38901. Testing: Refactor Fixes: Partially #38901 Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
This commit is contained in:
parent
ec1b9b2480
commit
c92cd9e624
142 changed files with 546 additions and 533 deletions
81
components/script/dom/html/mod.rs
Normal file
81
components/script/dom/html/mod.rs
Normal file
|
@ -0,0 +1,81 @@
|
|||
/* 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 htmlanchorelement;
|
||||
pub(crate) mod htmlareaelement;
|
||||
pub(crate) mod htmlaudioelement;
|
||||
pub(crate) mod htmlbaseelement;
|
||||
pub(crate) mod htmlbodyelement;
|
||||
pub(crate) mod htmlbrelement;
|
||||
pub(crate) mod htmlbuttonelement;
|
||||
#[allow(dead_code)]
|
||||
pub(crate) mod htmlcanvaselement;
|
||||
pub(crate) mod htmlcollection;
|
||||
pub(crate) mod htmldataelement;
|
||||
pub(crate) mod htmldatalistelement;
|
||||
pub(crate) mod htmldetailselement;
|
||||
pub(crate) mod htmldialogelement;
|
||||
pub(crate) mod htmldirectoryelement;
|
||||
pub(crate) mod htmldivelement;
|
||||
pub(crate) mod htmldlistelement;
|
||||
pub(crate) mod htmldocument;
|
||||
pub(crate) mod htmlelement;
|
||||
pub(crate) mod htmlembedelement;
|
||||
pub(crate) mod htmlfieldsetelement;
|
||||
pub(crate) mod htmlfontelement;
|
||||
pub(crate) mod htmlformcontrolscollection;
|
||||
pub(crate) mod htmlformelement;
|
||||
pub(crate) mod htmlframeelement;
|
||||
pub(crate) mod htmlframesetelement;
|
||||
pub(crate) mod htmlheadelement;
|
||||
pub(crate) mod htmlheadingelement;
|
||||
pub(crate) mod htmlhrelement;
|
||||
pub(crate) mod htmlhtmlelement;
|
||||
pub(crate) mod htmlhyperlinkelementutils;
|
||||
pub(crate) mod htmliframeelement;
|
||||
pub(crate) mod htmlimageelement;
|
||||
pub(crate) mod htmlinputelement;
|
||||
pub(crate) mod htmllabelelement;
|
||||
pub(crate) mod htmllegendelement;
|
||||
pub(crate) mod htmllielement;
|
||||
pub(crate) mod htmllinkelement;
|
||||
pub(crate) mod htmlmapelement;
|
||||
pub(crate) mod htmlmediaelement;
|
||||
pub(crate) mod htmlmenuelement;
|
||||
pub(crate) mod htmlmetaelement;
|
||||
pub(crate) mod htmlmeterelement;
|
||||
pub(crate) mod htmlmodelement;
|
||||
pub(crate) mod htmlobjectelement;
|
||||
pub(crate) mod htmlolistelement;
|
||||
pub(crate) mod htmloptgroupelement;
|
||||
pub(crate) mod htmloptionelement;
|
||||
pub(crate) mod htmloptionscollection;
|
||||
pub(crate) mod htmloutputelement;
|
||||
pub(crate) mod htmlparagraphelement;
|
||||
pub(crate) mod htmlparamelement;
|
||||
pub(crate) mod htmlpictureelement;
|
||||
pub(crate) mod htmlpreelement;
|
||||
pub(crate) mod htmlprogresselement;
|
||||
pub(crate) mod htmlquoteelement;
|
||||
#[allow(dead_code)]
|
||||
pub(crate) mod htmlscriptelement;
|
||||
pub(crate) mod htmlselectelement;
|
||||
pub(crate) mod htmlslotelement;
|
||||
pub(crate) mod htmlsourceelement;
|
||||
pub(crate) mod htmlspanelement;
|
||||
pub(crate) mod htmlstyleelement;
|
||||
pub(crate) mod htmltablecaptionelement;
|
||||
pub(crate) mod htmltablecellelement;
|
||||
pub(crate) mod htmltablecolelement;
|
||||
pub(crate) mod htmltableelement;
|
||||
pub(crate) mod htmltablerowelement;
|
||||
pub(crate) mod htmltablesectionelement;
|
||||
pub(crate) mod htmltemplateelement;
|
||||
pub(crate) mod htmltextareaelement;
|
||||
pub(crate) mod htmltimeelement;
|
||||
pub(crate) mod htmltitleelement;
|
||||
pub(crate) mod htmltrackelement;
|
||||
pub(crate) mod htmlulistelement;
|
||||
pub(crate) mod htmlunknownelement;
|
||||
pub(crate) mod htmlvideoelement;
|
Loading…
Add table
Add a link
Reference in a new issue