2024-08-01 22:50:52 -03:00
|
|
|
[Exposed=Window]
|
|
|
|
|
interface PerformanceNavigation {
|
2024-09-10 04:21:16 -03:00
|
|
|
const unsigned short TYPE_NAVIGATE = 0;
|
|
|
|
|
const unsigned short TYPE_RELOAD = 1;
|
|
|
|
|
const unsigned short TYPE_BACK_FORWARD = 2;
|
|
|
|
|
const unsigned short TYPE_RESERVED = 255;
|
|
|
|
|
readonly attribute unsigned short type;
|
|
|
|
|
readonly attribute unsigned short redirectCount;
|
|
|
|
|
[Default] object toJSON();
|
|
|
|
|
};
|