Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector / console / console-string-format-expected.txt
index 11d50e6..f6778d3 100644 (file)
@@ -2,7 +2,13 @@ Tests that formatting processes '%' properly in case of missing formatters.
 
 String.sprintf(%T, 1) = "%T"
 String.sprintf(10% x 20%, of the original) = "10% x 20%"
-String.sprintf(%%, ) = "%%"
+String.sprintf(%%, ) = "%"
+String.sprintf(%%%, ) = "%%"
+String.sprintf(%%, 1, 2, 3) = "%"
+String.sprintf(%%d, 1) = "%d"
+String.sprintf(%%d%, 1) = "%d%"
+String.sprintf(%%%d%, 1) = "%1%"
+String.sprintf(%%%d%%, 1) = "%1%"
 String.sprintf(%, ) = "%"
 String.sprintf(% %d, 1) = "% 1"
 String.sprintf(%d % %s, 1, foo) = "1 % foo"