Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

happy-dom

Package Overview
Dependencies
Maintainers
1
Versions
593
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

happy-dom - npm Package Compare versions

Comparing version 15.8.3 to 15.8.4

1

cjs/nodes/html-select-element/HTMLSelectElement.d.ts

@@ -24,2 +24,3 @@ import HTMLElement from '../html-element/HTMLElement.cjs';

[PropertySymbol.selectedIndex]: number;
[PropertySymbol.proxy]: HTMLSelectElement;
onchange: (event: Event) => void | null;

@@ -26,0 +27,0 @@ oninput: (event: Event) => void | null;

@@ -24,2 +24,3 @@ import HTMLElement from '../html-element/HTMLElement.js';

[PropertySymbol.selectedIndex]: number;
[PropertySymbol.proxy]: HTMLSelectElement;
onchange: (event: Event) => void | null;

@@ -26,0 +27,0 @@ oninput: (event: Event) => void | null;

@@ -28,2 +28,3 @@ import HTMLElement from '../html-element/HTMLElement.js';

[PropertySymbol.selectedIndex] = -1;
[PropertySymbol.proxy];
// Events

@@ -162,2 +163,3 @@ onchange = null;

});
this[PropertySymbol.proxy] = proxy;
this[PropertySymbol.selectNode] = proxy;

@@ -164,0 +166,0 @@ return proxy;

6

lib/nodes/node/Node.js

@@ -396,3 +396,3 @@ import EventTarget from '../../event/EventTarget.js';

}
node[PropertySymbol.parentNode] = this;
node[PropertySymbol.parentNode] = this[PropertySymbol.proxy] || this;
node[PropertySymbol.clearCache]();

@@ -495,3 +495,3 @@ this[PropertySymbol.nodeArray].push(node);

}
newNode[PropertySymbol.parentNode] = this;
newNode[PropertySymbol.parentNode] = this[PropertySymbol.proxy] || this;
newNode[PropertySymbol.clearCache]();

@@ -851,3 +851,3 @@ const index = nodeArray.indexOf(referenceNode);

let node1 = otherNode;
let node2 = this;
let node2 = this[PropertySymbol.proxy] || this;
/**

@@ -854,0 +854,0 @@ * 3. Let attr1 and attr2 be null.

{
"name": "happy-dom",
"version": "15.8.3",
"version": "15.8.4",
"license": "MIT",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/capricorn86/happy-dom",

@@ -32,2 +32,3 @@ import HTMLElement from '../html-element/HTMLElement.js';

public [PropertySymbol.selectedIndex]: number = -1;
public [PropertySymbol.proxy]: HTMLSelectElement;

@@ -199,2 +200,3 @@ // Events

this[PropertySymbol.proxy] = proxy;
this[PropertySymbol.selectNode] = proxy;

@@ -201,0 +203,0 @@

@@ -515,3 +515,3 @@ import EventTarget from '../../event/EventTarget.js';

node[PropertySymbol.parentNode] = this;
node[PropertySymbol.parentNode] = this[PropertySymbol.proxy] || this;

@@ -651,3 +651,3 @@ node[PropertySymbol.clearCache]();

newNode[PropertySymbol.parentNode] = this;
newNode[PropertySymbol.parentNode] = this[PropertySymbol.proxy] || this;

@@ -1066,3 +1066,3 @@ newNode[PropertySymbol.clearCache]();

let node1: Node = otherNode;
let node2: Node = this;
let node2: Node = this[PropertySymbol.proxy] || this;

@@ -1069,0 +1069,0 @@ /**

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc