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.
43 lines
1015 B
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
|
|
};
|
|
|