[Webkit-unassigned] [Bug 67310] XSLTProcessor transformToDocument() returns undefined with large XML document.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 1 10:33:35 PDT 2011


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





--- Comment #4 from Dustin <at88mph at hotmail.com>  2011-09-01 10:33:36 PST ---
// Small code sample of how it's being used.
//

var renderProcessor = new XSLTProcessor();
var renderXSLDOM = getXSLFromService(...);
var myDOM = getXMLFromService(...);

if (renderProcessor.reset)
{
  renderProcessor.reset();
}

try
{
  renderProcessor.importStylesheet(renderXSLDOM);

  // Set parameters...
  rederProcessor.setParameter(...);

  displayFragment = renderProcessor.transformToDocument(myDOM);

  // displayFragment is undefined.
}
catch (e1)
{
  alert("Found error! >> " + e1);
}

-- 
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