We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fa845e commit 6a53438Copy full SHA for 6a53438
2 files changed
CHANGELOG.md
@@ -10,6 +10,7 @@ New features:
10
- Added `length`, `scrollRestoration` and `setScrollRestoration` for `History` (#87 by @acple)
11
12
Bugfixes:
13
+- Fixed `visibilityState` for `HTMLDocument` (#86 by @cwinebr)
14
15
Other improvements:
16
src/Web/HTML/HTMLDocument.js
@@ -15,7 +15,7 @@ export function _readyState(doc) {
}
17
export function _visibilityState(doc) {
18
- return doc.readyState;
+ return doc.visibilityState;
19
20
21
export function _activeElement(doc) {
0 commit comments