aboutsummaryrefslogtreecommitdiff
path: root/test/fixtures/dom-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/dom-test.js')
-rw-r--r--test/fixtures/dom-test.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/fixtures/dom-test.js b/test/fixtures/dom-test.js
index 578b1324..961e0a77 100644
--- a/test/fixtures/dom-test.js
+++ b/test/fixtures/dom-test.js
@@ -28,6 +28,7 @@ function prepareWindow(window) {
// Define innerText setter as an alias for textContent setter
Object.defineProperty(window.HTMLDivElement.prototype, 'innerText', {
+ get() { return this.textContent; },
set(value) { this.textContent = value; }
});