Skip to content

Commit

Permalink
Clean up (#1686)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jym77 authored Sep 24, 2024
1 parent 8f8d779 commit a6a2a08
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/alfa-dom/src/node/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Shadow } from "./shadow.js";
import { Slot } from "./slot.js";
import { Slotable } from "./slotable.js";

import * as helpers from "./element/input-type.js";
import type * as helpers from "./element/input-type.js";
import * as predicate from "./element/predicate.js";

const { isEmpty } = Iterable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Sequence } from "@siteimprove/alfa-sequence";
import { Node } from "../../node.js";
import { Element } from "../element.js";
import type { Element } from "../element.js";

import { getElementDescendants } from "./element-descendants.js";

Expand Down
2 changes: 1 addition & 1 deletion packages/alfa-style/src/node/predicate/is-option-hidden.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Cache } from "@siteimprove/alfa-cache";
import { Device } from "@siteimprove/alfa-device";
import type { Device } from "@siteimprove/alfa-device";
import { Element, Node } from "@siteimprove/alfa-dom";
import type { Option } from "@siteimprove/alfa-option";
import type { Predicate } from "@siteimprove/alfa-predicate";
Expand Down
4 changes: 2 additions & 2 deletions packages/alfa-style/src/node/predicate/is-scrolled-behind.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Cache } from "@siteimprove/alfa-cache";
import { Device } from "@siteimprove/alfa-device";
import type { Device } from "@siteimprove/alfa-device";
import { Element, Node } from "@siteimprove/alfa-dom";
import { Predicate } from "@siteimprove/alfa-predicate";
import { Rectangle } from "@siteimprove/alfa-rectangle";
Expand All @@ -8,7 +8,7 @@ import {
hasComputedStyle,
hasPositioningParent,
} from "../../element/element.js";
import { Longhands } from "../../longhands.js";
import type { Longhands } from "../../longhands.js";

const { isElement, hasBox } = Element;
const { and, or, not } = Predicate;
Expand Down

0 comments on commit a6a2a08

Please sign in to comment.