Bug 142150 - html5 <li> tag after xslt-transformation
Summary: html5 <li> tag after xslt-transformation
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: 312.x
Hardware: Other Linux
: P2 Minor
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-01 10:32 PST by Stefan Vogel
Modified: 2015-03-02 13:06 PST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Vogel 2015-03-01 10:32:54 PST
(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
Comment 1 Stefan Vogel 2015-03-02 12:44:21 PST
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.
Comment 2 Stefan Vogel 2015-03-02 13:06:18 PST
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.