chore: bump chromium to f5b345dd470f14eef6e44732ccf23 (master) (#20649)

This commit is contained in:
Electron Bot 2019-10-28 18:12:35 -04:00 committed by Jeremy Apthorp
parent fb8b1fd1c9
commit b6246dcf12
154 changed files with 1490 additions and 1197 deletions

View file

@ -427,13 +427,8 @@ describe('chromium feature', () => {
describe('Promise', () => {
it('resolves correctly in Node.js calls', (done) => {
document.registerElement('x-element', {
prototype: Object.create(HTMLElement.prototype, {
createdCallback: {
value: () => {}
}
})
})
class XElement extends HTMLElement {}
customElements.define('x-element', XElement)
setImmediate(() => {
let called = false
Promise.resolve().then(() => {
@ -445,13 +440,8 @@ describe('chromium feature', () => {
})
it('resolves correctly in Electron calls', (done) => {
document.registerElement('y-element', {
prototype: Object.create(HTMLElement.prototype, {
createdCallback: {
value: () => {}
}
})
})
class YElement extends HTMLElement {}
customElements.define('y-element', YElement)
ipcRenderer.invoke('ping').then(() => {
let called = false
Promise.resolve().then(() => {