9 lines
229 B
Text
9 lines
229 B
Text
[Exposed=Window]
|
|
interface UserActivation {
|
|
readonly attribute boolean hasBeenActive;
|
|
readonly attribute boolean isActive;
|
|
};
|
|
|
|
partial interface Navigator {
|
|
[SameObject] readonly attribute UserActivation userActivation;
|
|
};
|