Unable to set document.body.innerHTML of IFrame
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
Webcompat Priority | P3 |
People
(Reporter: theosib, Unassigned)
References
(Depends on 1 open bug)
Details
(Whiteboard: [webcompat][needs-wpt-?])
Attachments
(3 files)
Reporter | ||
Comment 1•13 years ago
|
||
Updated•13 years ago
|
Comment 4•13 years ago
|
||
Comment 5•13 years ago
|
||
Comment 6•13 years ago
|
||
Comment 7•13 years ago
|
||
Reporter | ||
Comment 8•13 years ago
|
||
Comment 9•10 years ago
|
||
Comment 10•7 years ago
|
||
Updated•7 years ago
|
Updated•7 years ago
|
Updated•7 years ago
|
Comment 11•6 years ago
|
||
Migrating Webcompat whiteboard priorities to project flags. See bug 1547409.
Comment 12•6 years ago
|
||
See bug 1547409. Migrating whiteboard priority tags to program flags.
Comment 13•6 years ago
|
||
(In reply to Henri Sivonen (:hsivonen) from comment #7)
(In reply to Mounir Lamouri (:volkmar) (:mounir) from comment #6)
Henri, do we plan to follow what Webkit is doing here or should we WONTFIX
this?I expect us to follow WebKit/spec here eventually. Marking as dependent on
bug 543435.
Henri, is it the HTML standard that (should?) defines this?
Updated•6 years ago
|
Comment 14•5 years ago
|
||
(In reply to Mike Taylor [:miketaylr] (PTO July 31 - Aug 8) from comment #13)
Henri, is it the HTML standard that (should?) defines this?
This is in the HTML Standard, but a quick look suggests the level of detail is insufficient (about events):
https://html.spec.whatwg.org/#creating-a-new-browsing-context
Updated•5 years ago
|
Updated•5 years ago
|
Updated•4 years ago
|
Comment 15•4 years ago
|
||
(In reply to Henri Sivonen (:hsivonen) from comment #14)
(In reply to Mike Taylor [:miketaylr] (PTO July 31 - Aug 8) from comment #13)
Henri, is it the HTML standard that (should?) defines this?
This is in the HTML Standard, but a quick look suggests the level of detail is insufficient (about events):
https://html.spec.whatwg.org/#creating-a-new-browsing-context
has an issue been opened about it?
https://github.com/whatwg/html/issues
And probably Henri would correctly phrase the issue. Or thomas?
We just created an intervention for webcompat because of this issue
https://github.com/mozilla-extensions/webcompat-addon/pull/175/files
Comment 16•4 years ago
|
||
(In reply to Karl Dubost💡 :karlcow from comment #15)
has an issue been opened about it?
There is https://github.com/whatwg/html/issues/4965 from 2019.
Comment 17•4 years ago
|
||
This is somewhat less about the spec and more about what we can get done given our corpus of Gecko-specific test cases.
I already failed at fixing this in the summer of 2011. I now thing I understand the issues better, and part of my failure then was trying to fix too much at the same time.
My current thinking is that we should
- Change the docshell/content viewer-created
about:blank
from lazy to eager for the Web (keeping in lazy for XUL). - Change the ghost of the old HTML parser not to blow away the document created in step 1 and to make it only fire the relevant events.
Comment 18•4 years ago
|
||
Realistically, not going to happen while Fission requires the level of attention it is requiring right now.
Updated•2 years ago
|
Updated•2 years ago
|
Comment 19•2 years ago
|
||
Clear a needinfo that is pending on an inactive user.
Inactive users most likely will not respond; if the missing information is essential and cannot be collected another way, the bug maybe should be closed as INCOMPLETE
.
For more information, please visit auto_nag documentation.
Comment 20•2 years ago
|
||
Redirecting the ni? to the correct Tom-account.
Comment 21•2 years ago
|
||
I'm not sure what I can add here, aside from mentioning that we should probably revisit this again after bug 543435 lands, since it seems similar to the first option Henri mentioned in comment #17.
Comment 22•2 years ago
|
||
A workaround, as identified in https://stackoverflow.com/questions/8240101/set-content-of-iframe#comment20993503_8240158, is to set the src property:
<iframe src="javascript:void(0);"></iframe>
Comment 23•2 years ago
|
||
Description
•