Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

43 lines (34 sloc)
1015 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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 | |
}; |