diff options
Diffstat (limited to 'test/fixtures/dom-test.js')
-rw-r--r-- | test/fixtures/dom-test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fixtures/dom-test.js b/test/fixtures/dom-test.js index 459383cc..364612f6 100644 --- a/test/fixtures/dom-test.js +++ b/test/fixtures/dom-test.js @@ -28,7 +28,9 @@ function prepareWindow(window) { // Define innerText setter as an alias for textContent setter Object.defineProperty(window.HTMLDivElement.prototype, 'innerText', { + /** @returns {string} */ get() { return this.textContent; }, + /** @param {string} value */ set(value) { this.textContent = value; } }); |