Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: LayoutTests/fast/xsl/xslt-processor-expected.txt

Issue 795053002: [binding] Migrate XSLTProcessor.idl away from using custom V8 binding. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated bec ause of its detrimental effects to the end user's experience. For more help, che ck http://xhr.spec.whatwg.org/. 1 CONSOLE WARNING: Synchronous XMLHttpRequest on the main thread is deprecated bec ause of its detrimental effects to the end user's experience. For more help, che ck http://xhr.spec.whatwg.org/.
2 0.1 original xml: 2 0.1 original xml:
3 <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="xsl t-text.xsl"?><TEST>SOURCE XML: &lt;&lt;&lt;&amp;тест&amp;&gt;&gt;&gt;</TEST> 3 <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="xsl t-text.xsl"?><TEST>SOURCE XML: &lt;&lt;&lt;&amp;тест&amp;&gt;&gt;&gt;</TEST>
4 0.2 xsl1: 4 0.2 xsl1:
5 <?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.o rg/1999/XSL/Transform" version="1.0"> 5 <?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.o rg/1999/XSL/Transform" version="1.0">
6 6
7 <xsl:output method="text" encoding="KOI8-R"/> 7 <xsl:output method="text" encoding="KOI8-R"/>
8 <xsl:template match="TEST">CHARACTERS IN XSLT: &lt;&lt;&lt;&amp;тест&amp;&gt;&gt ;&gt; 8 <xsl:template match="TEST">CHARACTERS IN XSLT: &lt;&lt;&lt;&amp;тест&amp;&gt;&gt ;&gt;
9 <xsl:apply-templates/><xsl:text> 9 <xsl:apply-templates/><xsl:text>
10 </xsl:text></xsl:template> 10 </xsl:text></xsl:template>
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 3.2 transform twice: 76 3.2 transform twice:
77 Success 77 Success
78 78
79 4.0 void setParameter(in DOMString namespaceURI, in DOMString localName, in Valu e value): 79 4.0 void setParameter(in DOMString namespaceURI, in DOMString localName, in Valu e value):
80 80
81 4.1 pass setParameter same localname, different namespaces: 81 4.1 pass setParameter same localname, different namespaces:
82 ****Failure**** (expected: "Success" actual: "Failure") 82 ****Failure**** (expected: "Success" actual: "Failure")
83 4.2 pass undefined namespace: 83 4.2 pass undefined namespace:
84 Success 84 Success
85 4.3 pass setParameter an undefined name: 85 4.3 pass setParameter an undefined name:
86 ****Failure**** (expected exception, instead got result: "undefined") 86 Success
87 4.4 pass unsupported value to setParameter: 87 4.4 pass undefined value to setParameter:
88 Success
89 4.5 pass unsupported value to setParameter:
88 ****Failure**** (expected exception, instead got result: "undefined") 90 ****Failure**** (expected exception, instead got result: "undefined")
89 91
90 5.0 Value getParameter(in DOMString namespaceURI, in DOMString localName): 92 5.0 Value getParameter(in DOMString namespaceURI, in DOMString localName):
91 93
92 5.1 pass getParameter an undefined name: 94 5.1 pass getParameter an undefined name:
93 ****Failure**** (expected exception, instead got result: "undefined") 95 Success
94 5.2 pass getParameter a name which has not been set: 96 5.2 pass getParameter a name which has not been set:
95 Success 97 Success
96 5.3 verify getParameter actually gets (and set sets): 98 5.3 verify getParameter actually gets (and set sets):
97 Success 99 Success
98 100
99 6.0 void removeParameter(in DOMString namespaceURI, in DOMString localName): 101 6.0 void removeParameter(in DOMString namespaceURI, in DOMString localName):
100 102
101 6.1 pass removeParameter same localname, different namespaces: 103 6.1 pass removeParameter same localname, different namespaces:
102 ****Failure**** (expected: "Success" actual: "Failure") 104 ****Failure**** (expected: "Success" actual: "Failure")
103 6.2 verify removeParameter actually removes using undefined namespace: 105 6.2 verify removeParameter actually removes using undefined namespace:
104 Success 106 Success
105 6.3 pass removeParameter undefined name: 107 6.3 pass removeParameter undefined name:
106 Success 108 Success
107 6.4 pass removeParameter a name which has not been set: 109 6.4 pass removeParameter a name which has not been set:
108 Success 110 Success
109 6.5 verify removeParameter actually removes: 111 6.5 verify removeParameter actually removes:
110 Success 112 Success
111 113
112 7.0 void clearParameters(): 114 7.0 void clearParameters():
113 115
114 7.1 verify that clearParameters does: 116 7.1 verify that clearParameters does:
115 Success 117 Success
116 118
117 8.0 void reset(): 119 8.0 void reset():
118 120
119 8.1 verify that parameters have been cleared: 121 8.1 verify that parameters have been cleared:
120 Success 122 Success
121 8.2 verify that stylesheet has been cleared: 123 8.2 verify that stylesheet has been cleared:
122 Success 124 Success
OLDNEW
« no previous file with comments | « LayoutTests/fast/xsl/xslt-processor.html ('k') | Source/bindings/core/v8/custom/V8XSLTProcessorCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698