mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Fix the hasInstance hook of interface objects
Step 2 wasn't properly implemented.
This commit is contained in:
parent
e08f817058
commit
ae72d1dfbe
3 changed files with 40 additions and 11 deletions
|
@ -33806,7 +33806,16 @@
|
|||
},
|
||||
"local_changes": {
|
||||
"deleted": [],
|
||||
"items": {},
|
||||
"items": {
|
||||
"testharness": {
|
||||
"WebIDL/ecmascript-binding/has-instance.html": [
|
||||
{
|
||||
"path": "WebIDL/ecmascript-binding/has-instance.html",
|
||||
"url": "/WebIDL/ecmascript-binding/has-instance.html"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"reftest_nodes": {}
|
||||
},
|
||||
"reftest_nodes": {
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
test(function() {
|
||||
var obj = Object.create(Element.prototype);
|
||||
assert_true(obj instanceof Element);
|
||||
assert_true(obj instanceof Node);
|
||||
assert_false(obj instanceof Attr);
|
||||
}, "Manually-constructed prototype chains are correctly handled by instanceof");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue