[Webkit-unassigned] [Bug 130125] New: xslt fragment not allowing table row

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 12 05:40:22 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=130125

           Summary: xslt fragment not allowing table row
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: XML
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mark.duncan at awp-software-solutions.co.uk


We're experiencing issues when using the xslt processor in safari and chrome when we are trying to convert xml into a table row and then appending into the DOM.  If the xsl contains just the tr and td tags then the output is empty, however if these are wrapped in table tags they are included in the output.

Produces nothing:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="tableRow">
 <tr>
  <td>Table cell
  </td>
 </tr>
</xsl:template>

Produces output:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="tableRow">
 <table>
  <tr>
   <td>Table cell
   </td>
  </tr>
 </table>
</xsl:template>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list