-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WebIDL] Test subclassing of legacy factory functions
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
WebIDL/ecmascript-binding/legacy-factor-function-subclass.window.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
"use strict"; | ||
|
||
test(() => { | ||
class CustomImage extends Image {} | ||
var instance = new CustomImage(); | ||
|
||
assert_equals( | ||
Object.getPrototypeOf(instance), CustomImage.prototype, | ||
"Object.getPrototypeOf(instance) === CustomImage.prototype"); | ||
|
||
assert_true(instance instanceof CustomImage, "instance instanceof CustomImage"); | ||
assert_true(instance instanceof HTMLImageElement, "instance instanceof HTMLImageElement"); | ||
}, "[LegacyFactoryFunction] can be subclassed and correctly handles NewTarget"); |