From a43e64acc28a1ef68e7e1973233fffb8df5a3482 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 13 Dec 2017 09:57:59 -0500 Subject: [PATCH] remove copy pasta --- src/generators/nodes/Document.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/generators/nodes/Document.ts b/src/generators/nodes/Document.ts index b877e64ac9..c481b15299 100644 --- a/src/generators/nodes/Document.ts +++ b/src/generators/nodes/Document.ts @@ -4,14 +4,6 @@ import Node from './shared/Node'; import Block from '../dom/Block'; import Attribute from './Attribute'; -const readonly = new Set([ - 'innerWidth', - 'innerHeight', - 'outerWidth', - 'outerHeight', - 'online', -]); - export default class Document extends Node { type: 'Document'; attributes: Attribute[];