XSLT fails in Opera when loaded from cache



  • A very simply transform which works correctly when its first loaded by Opera, but if I quit and reload Opera it fails to do the transform and just leaves a blank page. It looks like its trying to load something but never shows an error and there are no messages in the error console. Anyone got any idea what the fault is?

    I'm using IIS7 on Windows Vista with Opera 9.64 

     opera.xml:-

    <?xml version="1.0" encoding="iso-8859-1"?>
    <?xml-stylesheet type="text/xsl" href="opera.xsl"?>
    <html>
        <head>
            <title>Opera XSLT Test</title>
        </head>
        <body>
            <p>Not Transformed</p>
        </body>
    </html>

    opera.xsl:-

    <?xml version="1.0" encoding="iso-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:output method="html" />

        <xsl:template match="/">
            <html>
                <head>
                    <title>Opera XSLT Test</title>
                </head>
                <body>
                    <p>Opera XSLT Test v1.1</p>
                </body>
            </html>
        </xsl:template>

    </xsl:stylesheet>
     



  •  I do not.



  • Can't reproduce, although this is XP and IIS 5.1.



  • @Spectre said:

    Can't reproduce, although this is XP and IIS 5.1.

    If it only effects my PC for some reason that would be a good thing, but I though I'd seen the same behaviour on XP as well.

    This site http://serenareem.net/ (no idea what it is, just it uses XML/XSLT) seems to have the same, or a similar fault. The first time you visit the page displays normally, if however you close down Opera then re-start; when Opera re-creates the tabs which were open is just shows a blank page.



  • @Ixpah said:

    This site http://serenareem.net/ (no idea what it is, just it uses XML/XSLT) seems to have the same, or a similar fault. The first time you visit the page displays normally, if however you close down Opera then re-start; when Opera re-creates the tabs which were open is just shows a blank page.

    Ahh, with the "tab re-creation" setting on it fails to load indeed, although refresh forces it to. Must be a bug. (shrugs)


Log in to reply