Home | History | Annotate | Download | only in parse-only

Lines Matching refs:Properties

144 		// is a super-fast way to populate an object with array-like properties
311 // as properties will not be copied (such as the
612 // exclude the following css properties to add px
734 // A method for quickly swapping in/out CSS properties to get correct calculations
2717 // and "clone" to set read-only properties
4124 // Reset the properties, if the item has been hidden or shown
4456 Native.implement = function(objects, properties){
4457 for (var i = 0, l = objects.length; i < l; i++) objects[i].implement(properties);
4975 extend: function(properties){
4976 for (var property in properties) this[property] = properties[property];
5184 extend: function(properties){
5185 Hash.each(properties, function(value, key){
5191 combine: function(properties){
5192 Hash.each(properties, function(value, key){
5718 var params = Array.link(arguments, {properties: Object.type, iframe: $defined});
5719 var props = params.properties || {};
5989 var property = Element.Properties.get(prop);
5996 var property = Element.Properties.get(prop);
6001 var property = Element.Properties.get(prop);
6280 Element.Properties = new Hash;
6282 Element.Properties.style = {
6298 Element.Properties.tag = {
6306 Element.Properties.html = (function(){
6337 if (Browser.Engine.webkit && Browser.Engine.version < 420) Element.Properties.text = {
6356 Element.Properties.events = {set: function(events){
6506 Element.Properties.styles = {set: function(styles){
6510 Element.Properties.opacity = {
7423 properties: {},
7449 var properties = $extend({height: options.height, width: options.width}, options.properties);
7464 properties.classid = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
7467 properties.type = 'application/x-shockwave-flash';
7468 properties.data = path;
7471 for (var property in properties) build += ' ' + property + '="' + properties[property] + '"';
7808 Element.Properties.tween = {
7871 Formerly Fx.Styles, effect to transition any number of CSS properties for an element using an object of rules, or CSS based selector rules.
7898 start: function(properties){
7899 if (!this.check(properties)) return this;
7900 if (typeof properties == 'string') properties = this.search(properties);
7902 for (var p in properties){
7903 var parsed = this.prepare(this.element, p, properties[p]);
7912 Element.Properties.morph = {
8299 Element.Properties.send = {
8319 Element.Properties.load = {
8425 var parent = null, properties = $A(arguments);
8426 if (Object.isFunction(properties[0]))
8427 parent = properties.shift();
8444 for (var i = 0; i < properties.length; i++)
8445 klass.addMethods(properties[i]);
8459 var properties = Object.keys(source);
8462 properties.push("toString", "valueOf");
8464 for (var i = 0, length = properties.length; i < length; i++) {
8465 var property = properties[i], value = source[property];
10326 // All *Width and *Height properties give 0 on elements with display none,
10574 var properties;
10576 properties = ['border-top-width', 'padding-top',
10580 properties = ['border-left-width', 'padding-left',
10583 return properties.inject(dim, function(memo, property) {