[Bug 27477] JSON Serialization

https://www.w3.org/Bugs/Public/show_bug.cgi?id=27477

Josh Spiegel <josh.spiegel@oracle.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |josh.spiegel@oracle.com

--- Comment #2 from Josh Spiegel <josh.spiegel@oracle.com> ---
Here is Serialization-json-31:

<test-case name="Serialization-json-31">
   <description>Test the JSON serialization output method - normalization form
</description>
   <created by="Josh Spiegel" on="2014-11-02"/>
   <dependency type="spec" value="XQ31+"/>
   <test><![CDATA[

     declare namespace output =
"http://www.w3.org/2010/xslt-xquery-serialization";
     declare option output:method "json";
     declare option output:normalization-form "NFC";

     "suc&#807;on"

   ]]></test>
   <result>
     <serialization-matches>"su&#231;on"</serialization-matches>
   </result>
</test-case>   

I don't understand how this expression you give relates to this test:

   normalize-unicode('suc&#807;on', 'NFC') = '&#231;'

Did you mean this expression?

   normalize-unicode('suc&#807;on','NFC') = 'su&#231;on'

I think this should evaluate to true.  

Can you clarify?

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Monday, 1 December 2014 21:35:08 UTC