Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion core/config/default-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ const defaultConfig = {
{id: 'ConsoleMessages', gatherer: 'console-messages'},
{id: 'CSSUsage', gatherer: 'css-usage'},
{id: 'Doctype', gatherer: 'dobetterweb/doctype'},
{id: 'DOMStats', gatherer: 'dobetterweb/domstats'},
{id: 'Inputs', gatherer: 'inputs'},
{id: 'IFrameElements', gatherer: 'iframe-elements'},
{id: 'ImageElements', gatherer: 'image-elements'},
Expand Down
102 changes: 0 additions & 102 deletions core/gather/gatherers/dobetterweb/domstats.js

This file was deleted.

9 changes: 0 additions & 9 deletions types/artifacts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ export interface GathererArtifacts extends PublicGathererArtifacts {
/** Information on the document's doctype(or null if not present), specifically the name, publicId, and systemId.
All properties default to an empty string if not present */
Doctype: Artifacts.Doctype | null;
/** Information on the size of all DOM nodes in the page and the most extreme members. */
DOMStats: Artifacts.DOMStats;
/** All the iframe elements in the page. */
IFrameElements: Artifacts.IFrameElement[];
/** All the input elements, including associated form and label elements. */
Expand Down Expand Up @@ -224,13 +222,6 @@ declare module Artifacts {
documentCompatMode: string;
}

interface DOMStats {
/** The total number of elements found within the page's body. */
totalBodyElements: number;
width: NodeDetails & {max: number;};
depth: NodeDetails & {max: number;};
}

interface IFrameElement {
/** The `id` attribute of the iframe. */
id: string,
Expand Down
Loading