Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.7.1
Choose a base ref
...
head repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.7.2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 22, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    0e82341 View commit details

Commits on Feb 23, 2023

  1. Merge pull request #772 from romansp/task/771-focus-blur-prevent-bubble

    #771@patch: Don't bubble `focus` and `blur` events through DOM.
    capricorn86 authored Feb 23, 2023
    Copy the full SHA
    7f8ee01 View commit details
Showing with 23 additions and 17 deletions.
  1. +20 −14 packages/happy-dom/src/nodes/html-element/HTMLElement.ts
  2. +3 −3 packages/happy-dom/test/nodes/html-element/HTMLElement.test.ts
34 changes: 20 additions & 14 deletions packages/happy-dom/src/nodes/html-element/HTMLElement.ts
Original file line number Diff line number Diff line change
@@ -383,15 +383,18 @@ export default class HTMLElement extends Element implements IHTMLElement {

this.ownerDocument['_activeElement'] = null;

for (const eventType of ['blur', 'focusout']) {
const event = new FocusEvent(eventType, {
this.dispatchEvent(
new FocusEvent('blur', {
bubbles: false,
composed: true
})
);
this.dispatchEvent(
new FocusEvent('focusout', {
bubbles: true,
composed: true
});
event._target = this;
event._currentTarget = this;
this.dispatchEvent(event);
}
})
);
}

/**
@@ -408,15 +411,18 @@ export default class HTMLElement extends Element implements IHTMLElement {

this.ownerDocument['_activeElement'] = this;

for (const eventType of ['focus', 'focusin']) {
const event = new FocusEvent(eventType, {
this.dispatchEvent(
new FocusEvent('focus', {
bubbles: false,
composed: true
})
);
this.dispatchEvent(
new FocusEvent('focusin', {
bubbles: true,
composed: true
});
event._target = this;
event._currentTarget = this;
this.dispatchEvent(event);
}
})
);
}

/**
Original file line number Diff line number Diff line change
@@ -388,7 +388,7 @@ describe('HTMLElement', () => {
element.blur();

expect(triggeredBlurEvent.type).toBe('blur');
expect(triggeredBlurEvent.bubbles).toBe(true);
expect(triggeredBlurEvent.bubbles).toBe(false);
expect(triggeredBlurEvent.composed).toBe(true);
expect(triggeredBlurEvent.target === element).toBe(true);

@@ -446,7 +446,7 @@ describe('HTMLElement', () => {
element.focus();

expect(triggeredFocusEvent.type).toBe('focus');
expect(triggeredFocusEvent.bubbles).toBe(true);
expect(triggeredFocusEvent.bubbles).toBe(false);
expect(triggeredFocusEvent.composed).toBe(true);
expect(triggeredFocusEvent.target === element).toBe(true);

@@ -502,7 +502,7 @@ describe('HTMLElement', () => {
element.focus();

expect(triggeredEvent.type).toBe('blur');
expect(triggeredEvent.bubbles).toBe(true);
expect(triggeredEvent.bubbles).toBe(false);
expect(triggeredEvent.composed).toBe(true);
expect(triggeredEvent.target === previousElement).toBe(true);
});