Opened 10 years ago
Closed 10 years ago
#13818 closed bug (fixed)
Creation of `col` elements inconsistancy
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | 2.0.1 |
Component: | manipulation | Version: | 2.0.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
jQuery 2.0 introduce breaking change in how creation of col
elements is handled.
- $("<col />") - returns a
col
element - $("<col /><col />") - returns a
colgroup
that contains n+1col
elements
The following jsbin demonstrates the above/see the browser console/ - http://jsbin.com/uturay/3/edit
Here is how it looks with jQuery 1.9.1 - http://jsbin.com/ehefeg/1/edit
For me expected behavior should be as in 1.9.1 version or at least in both cases(for 1 col
and 1+ col
) to have consistent behavior.
Thank you!
Change History (2)
comment:1 Changed 10 years ago by
Component: | unfiled → manipulation |
---|---|
Milestone: | None → 2.0.1 |
Priority: | undecided → high |
Status: | new → open |
comment:2 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | open → closed |
Fix #13818: Add wrapMap entry for col element
Changeset: 3a6194076b8b7ab5a9d9f5e6ec602db2ab427d3e
Note: See
TracTickets for help on using
tickets.
Looks like we need a new
wrapMap
entry for<col>
.