Bug 142150
| Summary: | html5 <li> tag after xslt-transformation | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Stefan Vogel <backebackekuchen16> |
| Component: | WebKitGTK | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Minor | ||
| Priority: | P2 | ||
| Version: | 312.x | ||
| Hardware: | Other | ||
| OS: | Linux | ||
Stefan Vogel
(My computer: Raspberry pi with Raspbian-OS and epiphany-browser)
html5 <li> tag works correct in the upper right corner "Download ZIP-file" in
http://opastefanvogel.github.io/FORTY-FORTH/
but not in
http://opastefanvogel.github.io/FORTY-FORTH/R01_Anfang.xml
I like xslt an I will use the original Theme with xslt. Please help, but it is only an minor bug. Midori-browser does not work with xslt. Thank you.
Stefan Vogel
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Stefan Vogel
Sorry, that was not carefully by me. I have used
<body style="white-space: pre-wrap;">
<header>
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
</header>
<section>
</section>
</body>
but I only need
<body>
<header>
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
</header>
<section style="white-space: pre-wrap;">
</section>
</body>
Now it works, I will change that. Sorry.
Stefan Vogel
Here again an old buggy version with <body style="white-space: pre-wrap">
http://opastefanvogel.github.io/FORTY-FORTH/bug_id_142510.html
but I use <section style="white-space: pre-wrap"> now.