[Saxon-JS 2] Types of events Saxon-JS cannot handle?

Martynas Jusevičius <martynas-tyFqBaoSXPC1Z/[email protected]> Wed, 9 Sep 2020 11:42:44 +0200
Newsgroups gmane.text.xml.saxon.help
Message-ID <CAE35Vmw5YHmBULyuD3qkK-UHRhBryEn-tDrwy1O6xOhYQKaWBQ@mail.gmail.com>
Hi,

are there any limitations re. the types of events Saxon-JS can handle?
I don't think there is anything in the documentation on this topic.

I'm doing a simple 'onblur' test but cannot get it to work (no effect):

    <xsl:template match="input[tokenize(@class, ' ') = 'typeahead']"
mode="ixsl:onblur">
        <xsl:sequence select="ixsl:call(ixsl:window(), 'alert', [
'typeahead blur' ])"/>
    </xsl:template>

Reproducible code: https://github.com/namedgraph/saxon-js2-test/tree/gh-pages

Previously with Saxon-CE I also had to revert to JS with events such
as 'onsubmit'.


Martynas