Closed
Bug 15866
Opened 26 years ago
Closed 26 years ago
box html content doesn't display if not wrapped in html:div
Categories
(Core :: XUL, defect, P3)
Tracking
()
VERIFIED
INVALID
People
(Reporter: rbs, Assigned: trudelle)
Details
With the tip of CVS tree, the following example doesn't work:
<box>
<html:i> <!-- markups different from html:div do not work -->
Hello XUL World
</html:i>
</box>
The output on the browser window is blank.
In order for it to work, one has to wrap it within <html:div>
<box>
<html:div>
<html:i>
Hello XUL World
</html:i>
</html:div>
</box>
Any compelling reason to have this constraint?
| Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
| Assignee | ||
Comment 1•26 years ago
|
||
HTML content in boxes has to be in a container, such as html:div. Please check
the posted online doc, and followup with questions to the XPFE newsgroup.
resolving as invalid per evaughan.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•26 years ago
|
||
Marking VERIFIED INVALID per trudelle's comments.
BULK MOVE: Changing component from XUL to XP Toolkit/Widgets: XUL. XUL
component will be deleted.
Component: XUL → XP Toolkit/Widgets: XUL
Component: XP Toolkit/Widgets: XUL → XUL
QA Contact: ckritzer → xptoolkit.widgets
Pushed by ecoal95@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/d8a89101d0de
No bug: Update unexpected passes from servo/servo#15866. r=me
You need to log in
before you can comment on or make changes to this bug.
Description
•