Opened 6 years ago
Last modified 3 years ago
#18587 assigned defect
[patch][needs test] JS Error during load of iframe with style "display:none" in Firefox
Reported by: | tweb-ix | Owned by: | dylan |
---|---|---|---|
Priority: | high | Milestone: | 1.14 |
Component: | HTML | Version: | 1.10.4 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
During load of an iframe with "display:none" a js error occurs cause getComputedStyle returns null for elements in this iframe.
Error occurs in dojo/hccss.js line 32
Following change in dojo/dom-style.js line 49 fix the problem:
- node.ownerDocument.defaultView.getComputedStyle(node, null) || {} : {}; + (node.ownerDocument.defaultView.getComputedStyle(node, null) || {}) : {};
Change History (7)
comment:1 Changed 6 years ago by
comment:2 Changed 6 years ago by
Component: | General → HTML |
---|---|
Owner: | set to Eugene Lazutkin |
comment:3 Changed 5 years ago by
Milestone: | tbd → 1.11 |
---|---|
Owner: | changed from Eugene Lazutkin to dylan |
Status: | new → assigned |
comment:4 Changed 5 years ago by
Priority: | undecided → high |
---|---|
Summary: | JS Error during load of iframe with style "display:none" in Firefox → [patch][needs test] JS Error during load of iframe with style "display:none" in Firefox |
comment:5 Changed 5 years ago by
Milestone: | 1.11 → 1.12 |
---|
Ok, after massive triage, ended up with about 80 tickets for 1.11 and 400 or so for 1.12. That's a bit unrealistic, so first I changed all 1.12 to 1.13 (with the plan to move some forward to the new 1.12. Now, I'm moving some of the 1.11 tickets that are less likely to get done this month without help to 1.11. Feel free to help out in January if you want to see this ticket land in 1.11.
comment:6 Changed 4 years ago by
Milestone: | 1.12 → 1.13 |
---|
Ticket planning... move current 1.12 tickets out to 1.13 that likely won't get fixed in 1.12.
comment:7 Changed 3 years ago by
Milestone: | 1.13 → 1.14 |
---|
corrected fix: