mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
fix: webContents.navigationHistory should be enumerable (#42182)
fix: webContents.navigationHistory should be enumerable Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
@@ -541,7 +541,8 @@ WebContents.prototype._init = function () {
|
||||
length: this._historyLength.bind(this),
|
||||
getEntryAtIndex: this._getNavigationEntryAtIndex.bind(this)
|
||||
},
|
||||
writable: false
|
||||
writable: false,
|
||||
enumerable: true
|
||||
});
|
||||
|
||||
// Dispatch IPC messages to the ipc module.
|
||||
|
||||
@@ -41,6 +41,17 @@ describe('webContents module', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('webContents properties', () => {
|
||||
afterEach(closeAllWindows);
|
||||
|
||||
it('has expected additional enumerable properties', () => {
|
||||
const w = new BrowserWindow({ show: false });
|
||||
const properties = Object.getOwnPropertyNames(w.webContents);
|
||||
expect(properties).to.include('ipc');
|
||||
expect(properties).to.include('navigationHistory');
|
||||
});
|
||||
});
|
||||
|
||||
describe('fromId()', () => {
|
||||
it('returns undefined for an unknown id', () => {
|
||||
expect(webContents.fromId(12345)).to.be.undefined();
|
||||
|
||||
Reference in New Issue
Block a user