| /yui3/src/test/js/ |
| H A D | TestFormat.js | 12 * @param {String} text The text to encode.
13 * @return {String} The XML-escaped text.
15 function xmlEscape(text){
17 return text.replace(/[<>"'&]/g, function(value){
171 var text = "";
178 text = "ok " + (currentTestNum++) + " - " + results.name;
181 text = "not " + text + " - " + results.message;
184 text [all...] |
| /yui3/src/autocomplete/js/ |
| H A D | autocomplete-highlighters-accentfold.js | 35 return Highlight.allFold(result.text, queryChars); 50 return Highlight.allFold(result.text, [query]); 65 return Highlight.allFold(result.text, [query], { 84 return Highlight.allFold(result.text, queryWords); 99 return Highlight.wordsFold(result.text, query);
|
| H A D | autocomplete-filters-accentfold.js | 38 var text = AccentFold.fold(result.text); 41 return text.indexOf(chr) !== -1; 61 return AccentFold.fold(result.text).indexOf(query) !== -1; 80 return AccentFold.fold(result.text).indexOf(query) === 0; 99 var resultText = AccentFold.fold(result.text); 124 AccentFold.fold(result.text)));
|
| H A D | autocomplete-filters.js | 37 result = result.text; 83 return (caseSensitive ? result.text : result.text.toLowerCase()).indexOf(query) !== -1; 121 return (caseSensitive ? result.text : result.text.toLowerCase()).indexOf(query) === 0; 169 var resultText = caseSensitive ? result.text : 170 result.text.toLowerCase(); 213 var resultWords = YArray.hash(WordBreak.getUniqueWords(result.text,
|
| H A D | autocomplete-highlighters.js | 34 return Highlight.all(result.text, queryChars, { 68 return Highlight.all(result.text, [query], { 102 return Highlight.all(result.text, [query], { 142 return Highlight.all(result.text, queryWords, { 176 return Highlight.words(result.text, query, {
|
| /yui3/src/cookie/tests/ |
| H A D | cookie-tests.js | 224 var text = Y.Cookie._createCookieString("name", "value", true); 225 Assert.areEqual("name=value", text, "Cookie string is incorrect."); 229 var text = Y.Cookie._createCookieString("name", "value", true, { path: "/" }); 230 Assert.areEqual("name=value; path=/", text, "Cookie string is incorrect."); 234 var text = Y.Cookie._createCookieString("name", "value", true, { path: 25 }); 235 Assert.areEqual("name=value", text, "Cookie string is incorrect."); 239 var text = Y.Cookie._createCookieString("name", "value", true, { path: "" }); 240 Assert.areEqual("name=value", text, "Cookie string is incorrect."); 244 var text = Y.Cookie._createCookieString("name", "value", true, { domain: "yahoo.com" }); 245 Assert.areEqual("name=value; domain=yahoo.com", text, "Cooki [all...] |
| /yui3/build/cookie/ |
| H A D | cookie-debug.js | 75 var text /*:String*/ = encode(name) + "=" + (encodeValue ? encode(value) : value), 84 text += "; expires=" + expires.toUTCString(); 89 text += "; path=" + path; 94 text += "; domain=" + domain; 99 text += "; secure"; 103 return text; 119 var text /*:Array*/ = []; 123 text.push(encode(key) + "=" + encode(String(value))); 127 return text.join("&"); 132 * @param {String} text Th [all...] |
| /yui3/build/autocomplete-highlighters-accentfold/ |
| H A D | autocomplete-highlighters-accentfold-debug.js | 37 return Highlight.allFold(result.text, queryChars); 52 return Highlight.allFold(result.text, [query]); 67 return Highlight.allFold(result.text, [query], { 86 return Highlight.allFold(result.text, queryWords); 101 return Highlight.wordsFold(result.text, query);
|
| /yui3/src/cookie/js/ |
| H A D | Cookie.js | 73 var text /*:String*/ = encode(name) + "=" + (encodeValue ? encode(value) : value), 82 text += "; expires=" + expires.toUTCString(); 87 text += "; path=" + path; 92 text += "; domain=" + domain; 97 text += "; secure"; 101 return text; 117 var text /*:Array*/ = []; 121 text.push(encode(key) + "=" + encode(String(value))); 125 return text.join("&"); 130 * @param {String} text Th [all...] |
| /yui3/build/autocomplete-filters-accentfold/ |
| H A D | autocomplete-filters-accentfold-debug.js | 40 var text = AccentFold.fold(result.text); 43 return text.indexOf(chr) !== -1; 63 return AccentFold.fold(result.text).indexOf(query) !== -1; 82 return AccentFold.fold(result.text).indexOf(query) === 0; 101 var resultText = AccentFold.fold(result.text); 126 AccentFold.fold(result.text))); 136 }, '@VERSION@' ,{requires:['array-extras', 'text-accentfold', 'text-wordbreak']});
|
| /yui3/build/autocomplete-filters/ |
| H A D | autocomplete-filters-debug.js | 39 result = result.text; 85 return (caseSensitive ? result.text : result.text.toLowerCase()).indexOf(query) !== -1; 123 return (caseSensitive ? result.text : result.text.toLowerCase()).indexOf(query) === 0; 171 var resultText = caseSensitive ? result.text : 172 result.text.toLowerCase(); 215 var resultWords = YArray.hash(WordBreak.getUniqueWords(result.text, 239 }, '@VERSION@' ,{requires:['array-extras', 'text-wordbreak']});
|
| /yui3/src/event/tests/manual/ |
| H A D | test-event-outside.js | 17 text = t.get('tagName').toLowerCase() + (id ? '#' + id : ''); 20 this.one('span').set('innerHTML', text);
|
| /yui3/build/autocomplete-highlighters/ |
| H A D | autocomplete-highlighters-debug.js | 36 return Highlight.all(result.text, queryChars, { 70 return Highlight.all(result.text, [query], { 104 return Highlight.all(result.text, [query], { 144 return Highlight.all(result.text, queryWords, { 178 return Highlight.words(result.text, query, {
|
| /yui3/src/cssbase/css/ |
| H A D | cssbase.css | 59 text-align:center; 65 text-align:center; 73 input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}
|
| H A D | cssbase-context.css | 59 text-align:center; 65 text-align:center; 73 .yui3-cssbase input[type=text],.yui3-cssbase input[type=password],.yui3-cssbase textarea{width:12.25em;*width:11.9em;}
|
| /yui3/src/swf/tests/ |
| H A D | Simple.as | 4 import flash.text.TextField; 26 yuiBridge.sendEvent({type:"textAdded", text:someText});
|
| /yui3/src/cssreset/css/ |
| H A D | cssreset.css | 75 text-align:left; 97 vertical-align:text-top; 100 vertical-align:text-bottom;
|
| H A D | cssreset-context.css | 75 text-align:left; 97 vertical-align:text-top; 100 vertical-align:text-bottom;
|
| /yui3/src/anim/docs/assets/ |
| H A D | anim.css | 11 text-decoration:none; 16 text-align:center; 56 text-decoration:none; 57 text-indent:9999px;
|
| /yui3/src/matrix/js/ |
| H A D | Matrix.js | 201 * Returns a string of text that can be used to populate a the css transform property of an element. 210 text = 'matrix('; 222 text += matrix.a + ',' + 229 text += ')'; 231 return text; 242 text = 'progid:DXImageTransform.Microsoft.Matrix('; 243 text += 'M11=' + matrix.a + ',' + 249 text += ''; 251 return text;
|
| /yui3/src/panel/docs/assets/css/ |
| H A D | main.css | 36 text-decoration: none; 39 a:hover { text-decoration: underline; } 70 -moz-text-shadow: 1px 1px 2px #999; 71 -webkit-text-shadow: 1px 1px 2px #999; 72 text-shadow: 1px 1px 2px #999; 87 text-transform: uppercase; 137 /* Used to denote text that shouldn't be selectable, such as line numbers or 148 caption, th { text-align: left; } 171 text-transform: uppercase; 275 -moz-text [all...] |
| /yui3/build/io-form/ |
| H A D | io-form-debug.js | 51 // Safari, Opera, FF all default options.value from .text if 56 data[item++] = n + eUC(o.attributes.value && o.attributes.value.specified ? o.value : o.text); 64 data[item++] = n + eUC(o.attributes.value && o.attributes.value.specified ? o.value : o.text);
|
| /yui3/src/test/tests/ |
| H A D | format-tests.js | 157 var text = Y.Test.Format.TAP(this.simpleReport); 170 Assert.areEqual(expectedText, text, "TAP formatting is incorrect.");
|
| /yui3/src/io/js/ |
| H A D | io-form.js | 49 // Safari, Opera, FF all default options.value from .text if 54 data[item++] = n + eUC(o.attributes.value && o.attributes.value.specified ? o.value : o.text); 62 data[item++] = n + eUC(o.attributes.value && o.attributes.value.specified ? o.value : o.text);
|
| /yui3/src/datatable/assets/skins/sam/ |
| H A D | datatable-base-skin.css | 20 text-align: center; 50 text-align: left; 51 text-shadow: 0 1px 1px #fff;
|