Files
servo/tests/wpt/web-platform-tests/WebIDL/ecmascript-binding/constructors-support.html

9 lines
223 B
HTML

<!DOCTYPE html>
<script>
window.badNewTarget = function() {};
badNewTarget.prototype = 8;
window.DOMParserSubclass = class extends DOMParser {}
window.ForeignDOMParserSubclass = class extends parent.DOMParser {}
</script>