Skip to content

Commit

Permalink
Fix test in IE10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Jul 21, 2016
1 parent 0e5d377 commit fb95dc8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/unit/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
}
};
instance = Object.create(Child);
// make __proto__ work on IE10.
if (!Object.__proto__) {
instance.__proto__ = Child;
}
});

suite('addFeature', function() {
Expand Down

0 comments on commit fb95dc8

Please sign in to comment.