mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
14 lines
455 B
Text
14 lines
455 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Page Visibility Level 2 (https://w3c.github.io/page-visibility/)
|
|
|
|
enum VisibilityState {
|
|
"hidden", "visible", "prerender"
|
|
};
|
|
|
|
partial interface Document {
|
|
readonly attribute boolean hidden;
|
|
readonly attribute VisibilityState visibilityState;
|
|
attribute EventHandler onvisibilitychange;
|
|
};
|