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

Unified Diff: Source/core/xml/XSLTProcessor.idl

Issue 1174413002: TreatReturnedNullStringAs=undefined removed from XSLTProcessor.idl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Return nullable value for getParameter instead of null string Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/xsl/xslt-processor.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XSLTProcessor.idl
diff --git a/Source/core/xml/XSLTProcessor.idl b/Source/core/xml/XSLTProcessor.idl
index cda3afb417763ca29fdf0d8a2218b8800447cff4..1198d41d5c5a515855b647a0221dfd15f8c32903 100644
--- a/Source/core/xml/XSLTProcessor.idl
+++ b/Source/core/xml/XSLTProcessor.idl
@@ -45,7 +45,7 @@
[CustomElementCallbacks] Document? transformToDocument(Node source);
void setParameter(DOMString? namespaceURI, DOMString localName, DOMString value);
- [TreatReturnedNullStringAs=Undefined] DOMString getParameter(DOMString? namespaceURI, DOMString localName);
+ DOMString? getParameter(DOMString? namespaceURI, DOMString localName);
void removeParameter(DOMString? namespaceURI, DOMString localName);
void clearParameters();
« no previous file with comments | « LayoutTests/fast/xsl/xslt-processor.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698