Bug 142150

Summary: html5 <li> tag after xslt-transformation
Product: WebKit Reporter: Stefan Vogel <backebackekuchen16>
Component: WebKitGTKAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Minor    
Priority: P2    
Version: 312.x   
Hardware: Other   
OS: Linux   

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.