catvm/CatVm2/browser/WindowProperties.js
Big1moster d843fcb236 dsf
2023-02-06 11:36:48 +08:00

17 lines
358 B
JavaScript

var WindowProperties = function WindowProperties() { // 构造函数
};
catvm.safefunction(WindowProperties);
Object.defineProperties(WindowProperties.prototype, {
[Symbol.toStringTag]: {
value: "WindowProperties",
configurable: true
}
})
// 设置原型的父对象
WindowProperties.prototype.__proto__ = EventTarget.prototype;