智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/f7/f7c84d971b9ff2b08d5059d1a42...

43 lines
1015 B

"use strict";
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const DefaultConstraintValidationImpl =
require("../constraint-validation/DefaultConstraintValidation-impl").implementation;
const { mixin } = require("../../utils");
const { reflectURLAttribute } = require("../../utils");
const { formOwner } = require("../helpers/form-controls");
class HTMLObjectElementImpl extends HTMLElementImpl {
get form() {
return formOwner(this);
}
get contentDocument() {
return null;
}
get data() {
return reflectURLAttribute(this, "data");
}
set data(V) {
this.setAttributeNS(null, "data", V);
}
get codeBase() {
return reflectURLAttribute(this, "codebase");
}
set codeBase(V) {
this.setAttributeNS(null, "codebase", V);
}
_barredFromConstraintValidationSpecialization() {
return true;
}
}
mixin(HTMLObjectElementImpl.prototype, DefaultConstraintValidationImpl.prototype);
module.exports = {
implementation: HTMLObjectElementImpl
};