Opened 14 years ago
Closed 14 years ago
#2022 closed defect (fixed)
[patch][cla] BUFakeNode.removeAttributeNode() broken
Reported by: | Owned by: | dylan | |
---|---|---|---|
Priority: | high | Milestone: | 0.9 |
Component: | TestFramework | Version: | 0.4 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
The BUFakeNode.prototype.removeAttributeNode() method at line 299 of testtools/JsFakeDom/BUFakeDom.js is broken. When called it throws an error: '"attributes" is not defined'.
The fix is simple. All instances of "attributes" inside the method should be replaced by "this.attributes".
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | removeAttributeNode.patch added |
---|
comment:1 Changed 14 years ago by
Milestone: | → 0.9 |
---|---|
Owner: | changed from alex to dylan |
Status: | new → assigned |
Summary: | BUFakeNode.removeAttributeNode() broken → [patch][cla] BUFakeNode.removeAttributeNode() broken |
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Replaces all instances of "attributes" with "this.attributes inside BUFakeNode.prototype.removeAttributeNode()